Inverts the sequence of a for loop.
for (var i = 0; i < 10; i++) { }
A code fix will be presented to you that will transform the code, it will invert the sequence of the for loop.
for (var i = 10 - 1; i >= 0; i--) { }
TBD