diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
index c74cfece16..f8ece3ed79 100755
--- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
@@ -4949,7 +4949,7 @@
"title": "Iterate with JavaScript While Loops",
"description": [
"You can run the same code multiple times by using a loop.",
- "Another type of JavaScript loop is called a \"while loop
\", because it runs \"while\" a specified condition is true and stops once that condition is no longer true.",
+ "The first type of loop we will learn is called a \"while
\" loop because it runs \"while\" a specified condition is true and stops once that condition is no longer true.",
"
var ourArray = [];", "Let's try getting a while loop to work by pushing values to an array.", "
var i = 0;
while(i < 5) {
ourArray.push(i);
i++;
}