Why do nested for loops work in the way that they do in the following example:
for loops
var times = [ [\"04/11/10\", \"86kg\"],
You output would be appropriate if the log statement would read
console.log(times[i][x]);
Instead you output your complete new list newTimes which is initialized outside the inner loop and grows with each inner loop iteration.
newTimes