diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 956faafd9b..a71eace31b 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -84,7 +84,7 @@
"title": "Declare String Variables",
"description": [
"In the previous challenge, we used the code var myName = \"your name\"
. This is what we call a String
variable. It is nothing more than a \"string\" of characters. JavaScript strings are always wrapped in quotes.",
- "Now let's create two new string variables: myFirstName
and myLastName
and assign them the values of your first and last name, respectively."
+ "Now let's create two new string variables: myFirstName
and myLastName
and assign them the values of your first and last name, respectively."
],
"tests": [
"assert((function(){if(typeof(myFirstName) !== \"undefined\" && typeof(myFirstName) === \"string\" && myFirstName.length > 0){return true;}else{return false;}})(), 'message: myFirstName
should be a string with at least one character in it.');",