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 975a4c1da8..654c9ca438 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -171,7 +171,7 @@
"id": "56533eb9ac21ba0edf2244aa",
"title": "Understanding Uninitialized Variables",
"description": [
- "When Javascript variables are declared, they have an inital value of undefined. If you do a mathematical operation on an undefined
variable your result will be NaN which means \"Not a Number\". If you concatanate a string with an undefined
variable, you will get a literal string of \"undefined\".",
+ "When Javascript variables are declared, they have an inital value of undefined
. If you do a mathematical operation on an undefined
variable your result will be NaN
which means \"Not a Number\". If you concatanate a string with an undefined
variable, you will get a literal string of \"undefined\"
.",
"
a
, b
, and c
with 5
, 10
, and \"I am a\"
respectively so that they will not be undefined
."
],