What does the following code print? for (int i = 0, j = 5; i < 5; i++, j--) { System.out.println("i: " + i + ", j: " + j); }