Consider:
int[][] multD = new int[5][]; multD[0] = new int[10];
Is this how you create a two-dimensional array with 5 rows and 10 columns?<
It is also possible to declare it the following way. It's not good design, but it works.
int[] twoDimIntArray[] = new int[5][10];