Last time, we've increased the control variable i after each run. This time, let's decrease it by 1 when we loop through this loop!

Nice! Remember, besides i--', we can also use  i -= 1 or the full version of i = i - 1' to decrease i.

Didn't we want to decreasei rather than increase it?