diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md index e7e5079d6e..9edc5f1cb9 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop.md @@ -11,7 +11,7 @@ dashedName: count-backwards-with-a-for-loop A for loop can also count backwards, so long as we can define the right conditions. -In order to count backwards by twos, we'll need to change our `initialization`, `condition`, and `final-expression`. +In order to decrement by two each iteration, we'll need to change our `initialization`, `condition`, and `final-expression`. We'll start at `i = 10` and loop while `i > 0`. We'll decrement `i` by 2 each loop with `i -= 2`.