What is the output of the following code? class Test { public static void main(String[] args) { int[] array = {1,2}; change(array); change(array[0], array[1]); System.out.println(array[0]+","+array[1]); } public static void change(int[] array){ int temp = array[0]; array[0] = array[1]; array[1] = temp; } public static void change(int a, int b){ int temp = a; a = b; b = temp; } }