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