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 03a9d83e3c..2fb15c0236 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2573,7 +2573,7 @@
"When a condition for an if
statement is true, the block of code following it is executed. What about when that condition is false? Normally nothing would happen. With an else
statement, an alternate block of code can be executed.",
"
if (num > 10) {", "
return \"Bigger than 10\";
} else {
return \"10 or Less\";
}
if
statements into a single statement."
+ "Combine the if
statements into a single if/else
statement."
],
"releasedOn": "January 1, 2016",
"challengeSeed": [