While thats mostly correct, when you declare the array you put the length in the brackets, a 12 item array(indices 0-11) would be declared

int[] myArray = new int[12];


To explain why it...