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 e1e0ce4a25b..0a68e050c29 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -763,7 +763,7 @@
"myVar = myVar + 5;",
"to add 5 to myVar. Since this is such a common pattern, there are operators which do both a mathematical operation and assignment in one step.",
"One such operator is the += operator.",
- "myVar += 5; will add 5 to myVar.",
+ "
var myVar = 1;", "
myVar += 5;
console.log(myVar); // Returns 6
a, b, and c to use the += operator."
],