If we call the following method on the array [10, 9, 3, 12, 5], what is returned?
public static int[] codeBlock(int[] array) {
int[] newArray = new int[array.length];
for (int i = 0; i < array.length; i++) {
newArray[i] = array[array.length - i - 1];
}
return newArray;
}