What would be the result in the console of running this code?
for (var i = 0; i < 5; i++) { console.log(i); }
0 1 2 3 4 5
1 2 3 4
0 1 2 3 4
1 2 3 4 5