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