class Test { void test2d(String[][] data) { for (String[] row : data) { for (String item : row) { System.out.println(item); } } } }