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 e1e0ce4a25..0a68e050c2 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
", "

Instructions

", "Convert the assignments for a, b, and c to use the += operator." ],