What is stored by a reference variable?What would be the results after the following code was executed? int[] array1 = {10, 20, 30, 40}; int [] array2 = {20, 30, 50, 60}; array1 = array2; array2 = array1;