diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 6b77ebac56..9dccea8951 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -604,7 +604,7 @@
"difficulty": "9.9817",
"description": [
"pop()
always removes the last element of an array. What if you want to remove the first? That's where .shift()
comes in.",
- "Take the myArray array and shift()
the first value off of it."
+ "Take the myArray array and shift()
the first value off of it. Set myRemoved
to the first value of myArray
using shift()
."
],
"tests": [
"assert((function(d){if(d[0] == 23 && d[1][0] == 'dog' && d[1][1] == 3 && d[2] == undefined){return true;}else{return false;}})(myArray), 'myArray should only have the last two values left([23, [\"dog\", 3]])');",