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