diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json
index b7e36c6df3..7a57b06e4d 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -827,9 +827,11 @@
"id": "bd7123c9c444eddfaeb5bdef",
"title": "Declare String Variables",
"description": [
- "Previously we have 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.",
+ "Previously we have used the code",
+ "var myName = \"your name\"
",
+ "\"your name\"
is called a string literal. It is a string because it is a series of zero or more characters enclosed in single or double quotes.",
"
myFirstName
and myLastName
and assign them the values of your first and last name, respectively."
+ "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.');",