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 fe0318e0ac..8899ff2f41 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -951,6 +951,7 @@
"In JavaScript, when the +
operator is used with a String
value, it is called the concatenation operator. You can build a new string out of other strings by concatenating them together.",
"Example",
"
'My name is Alan,' + ' I concatenate.'", + "Note
myStr
from the strings \"This is the start. \"
and \"This is the end.\"
using the +
operator."
],
@@ -985,6 +986,7 @@
"title": "Concatenating Strings with the Plus Equals Operator",
"description": [
"We can also use the +=
operator to concatenate a string onto the end of an existing string variable. This can be very helpful to break a long string over several lines.",
+ "NotemyStr
over several lines by concatenating these two strings:\"This is the first sentence. \"
and \"This is the second sentence.\"
using the +=
operator."
],