What's the syntax? For example, a 2d array:
Code:
int[][] array = {
	       {2, 5} , {7, 4}, 			
	  };
I'm looking for a similar approach with a 3D array but can't seem to find it anywhere.