What is the output of the following code?
var i = 0; for (; i < 5; ) { console.log(i); i++; }
1 2 3 4 5
0 1 2 3 4
1 2 3 4
0 1 2 3