diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 1096e028683..9bf7cc740fb 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -113,7 +113,7 @@
"description": [
"data structures have properties. For example, strings have a property called .length that will tell you how many characters are in the string.",
"For example, if we created a variable var firstName = \"Charles\", we could find out how long the string \"Charles\" is by using the firstName.length property.",
- "Use the .length property to count the number of characters in the lastNameLength variable."
+ "Use the .length property to count the number of characters in the lastName variable."
],
"tests": [
"assert((function(){if(typeof(lastNameLength) !== \"undefined\" && typeof(lastNameLength) === \"number\" && lastNameLength === 8){return(true);}else{return(false);}})(), 'lastNameLength should be equal to eight.');",