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