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