Collections Data Structure Java

/*This example creates a two-dimensional array with 9 rows and a variable number 
of columns for each row. The first row is given 21 columns. The second row is 
given 5000 columns.
*/
public class Test2Darray2 {
  public static void main(String args[]) {
    int[][] multD = new int[9][];
    multD[0] = new int[21];
    multD[1] = new int[5000];
  }
}