1.16.13.Arrays must be declared before you use them.
public class MainClass { public static void main(String[] argv) { int counts[]= null; boolean flags[];
String names[];
MyClass[][] things; // a two-dimensional array of objects
System.out.println("counts = " + counts);