public class Review1{ public static void main(String[] args){ int[] a1 = {1,2}; int[] a2; a2 = a1; a2[0] = 3; System.out.println(a1[0]); } }