kayleeclayton48621 kayleeclayton48621 28-02-2024 Computers and Technology contestada What is the output of the code below? int[] array = 7,8,10,11,4,3; int[] other = array; other[1] = 2; array[2] = 5; System.out.println(array==other); 1) true 2) false 3) null 4) 0 5) 1