From 3119da3ec55b5ee5be4d9f2540dcd45567870875 Mon Sep 17 00:00:00 2001
From: Kiara Barias <33493552+Kbarias@users.noreply.github.com>
Date: Wed, 6 Nov 2019 13:26:44 -0500
Subject: [PATCH] Changes to "Iterate with JavaScript While Loops - English"
challenge description (#37683)
* Update iterate-with-javascript-while-loops.english.md
* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-while-loops.english.md
Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
---
.../iterate-with-javascript-while-loops.english.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-while-loops.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-while-loops.english.md
index fd8184cfc3..3cfa331553 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-while-loops.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-while-loops.english.md
@@ -20,6 +20,8 @@ while(i < 5) {
}
```
+In the code example above, the while
loop will execute 5 times and append the numbers 0 through 4 to ourArray
.
+
Let's try getting a while loop to work by pushing values to an array.