diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
index 9afb311c5a..cb82a2cbb4 100755
--- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
@@ -1486,7 +1486,7 @@
"cannot change the value of myStr
to \"Job\", because the contents of myStr
cannot be altered. Note that this does not mean that myStr
cannot be changed, just that the individual characters of a string literal cannot be changed. The only way to change myStr
would be to assign it with a new string, like this:",
"
var myStr = \"Bob\";", "
myStr = \"Job\";
myStr
to achieve the desired effect that is intended by myStr[0] = \"H\" ;
."
+ "Correct the assignment to myStr
so it contains the string value of Hello World
using the approach shown in the example above."
],
"releasedOn": "January 1, 2016",
"challengeSeed": [