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