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