diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-do...while-loops.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-do...while-loops.english.md
index 3af3824c29..de3e8d7245 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-do...while-loops.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-do...while-loops.english.md
@@ -31,7 +31,7 @@ while (i < 5) {
}
```
-In this example, we initialize the value of myArray
to an empty array and the value of i
to 5. When we execute the while
loop, the condition evaluates to false
because i
is not less than 5, so we do not execute the code inside the loop. The result is that ourArray
will end up with no values added to it, and it will still look like []
when all of the code in the example above has completed running.
+In this example, we initialize the value of ourArray
to an empty array and the value of i
to 5. When we execute the while
loop, the condition evaluates to false
because i
is not less than 5, so we do not execute the code inside the loop. The result is that ourArray
will end up with no values added to it, and it will still look like []
when all of the code in the example above has completed running.
Now, take a look at a do...while
loop:
```js