How many dimensions does the array reference myField allow?
boolean[][][] bools, myField;
C.
Since the braces in the declaration are before the variable names, the variable type boolean[][][] applies to both variables.
Therefore, both bools and myField can reference a 3D array.