diff --git a/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md b/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md index 55cf18fe22a..38eedc94250 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md @@ -24,7 +24,7 @@ for (let i = 0; i < 10; i++) { ::: -In the example above, the loop starts counting at `0` and while `i` is less then `10`, the loop will continue to run. +In the example above, the loop starts counting at `0` and while `i` is less than `10`, the loop will continue to run. Inside the loop, we check if `i` is equal to `5`. If it is, we use the `break` statement to exit the loop early. If not, we log the value of `i` to the console. So the output of the code will print the numbers `0`, `1`, `2`, `3`, and `4`.