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 cf8f6994cd..ff54dca951 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2939,8 +2939,8 @@
"id": "56533eb9ac21ba0edf2244db",
"title": "Introducing Else If Statements",
"description": [
- "If you have multiple conditions that need to be met, you can chain if
statements together with else if
statements.",
- "
if (num > 15) {", + "If you have multiple conditions that need to be addressed, you can chain
return \"Bigger then 15\";
} else if (num < 5) {
return \"Smaller than 5\";
} else {
return \"Between 5 and 15\";
}
if
statements together with else if
statements.",
+ "if (num > 15) {", "
return \"Bigger then 15\";
} else if (num < 5) {
return \"Smaller than 5\";
} else {
return \"Between 5 and 15\";
}
else if
statements."
],
"releasedOn": "11/27/2015",