The way I have been trying works up until 03 and then skips the element. Now I understand that the array I am creating is a 3x3 so to say. I just do not understand how to create different lines of different lengths. Any help would be appreciated!
String[][] copied = new String[test._data.length][test._data[0].length];
    for(int i = 0; i < test._data.length; i++ ) {
        for(int y = 0; y < test._data[0].length ; y++)
        {
            copied[i][y] = test._data[i][y];
        }
    }
String[][] _data = {
              {"A", "B"},
              {"01", "02", "03"},
              {"XX"}};
 
     
    