Build your intuition. Fill in the missing part by typing it in.

We want to console.log out:

SNIPPET
15
24
33
42
51

What's the missing line here?

JAVASCRIPT
1var arr =  [1, 2, 3, 4, 5];
2
3for (var i = ___________; i >= 0; i--) {
4	console.log(arr[i]);
5}

Write the missing line below.

OUTPUT
Results will appear here.