From 63c5423e4a2dfb6774a9993bd2c653e7333b32fd Mon Sep 17 00:00:00 2001 From: Fordco Date: Thu, 21 Feb 2019 17:25:54 -0500 Subject: [PATCH] fix(curriculum): iterate with javascript do...while loops (#35214) --- .../iterate-with-javascript-do...while-loops.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 1eb10d57a6..f68e125d24 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 @@ -23,7 +23,7 @@ Let's try getting a do...while loop to work by pushing values to an ## Instructions
-Change the while loop in the code to a do...while loop so that the loop will push the number 10 to myArray, and i will be equal to 11 when your code finishes running. +Change the while loop in the code to a do...while loop so that the loop will only push the number 10 to myArray, and i will be equal to 11 when your code finishes running.
## Tests