What is the output of the following program?
public class Array {
public static void main(String[] args) {
int a = 3;
int[][][] arr = new int[a][a = 6][a]; // LINE A
System.out.println(arr.length + " " + arr[0][0].length + " " + arr[0].length + " " + arr[1].length);
}
}