diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json
index 7aac971929d..3c42feeeafb 100644
--- a/challenges/basic-javascript.json
+++ b/challenges/basic-javascript.json
@@ -959,7 +959,7 @@
" ourArray.push(i);",
"}",
"ourArray will now contain [10,8,6,4,2].",
- "Let's change our initialization and final-expression so we can count backward by twos for numbers.",
+ "Let's change our initialization and final-expression so we can count backward by twos by odd numbers.",
"Push the odd numbers from 9 through 1 to myArray using a for loop."
],
"tests":[
@@ -978,12 +978,11 @@
"// Only change code below this line.",
"",
"",
- "",
- "// Only change code above this line.",
- "",
- "if(typeof(myArray) !== \"undefined\"){(function(){return myArray;})();}",
""
],
+ "tail": [
+ "if(typeof(myArray) !== \"undefined\"){(function(){return myArray;})();}"
+ ],
"type": "waypoint",
"challengeType": 1
},