for (int i = 0; i < timeList.size(); i++) {
System.out.println(timeValuePairs1[0][i]);
System.out.println(timeValuePairs1[1][i]);
}
Or
for (int i = 0; i < timeValuePairs1.length; i++) {
for (int j = 0; j < timeValuePairs1[i].length; j++) {
System.out.print(timeValuePairs1[i][j]);
}
}
solved How do I get the values from a method which returns two dimensional array?