diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 7d759f07d9..d68cba9f4e 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1188,10 +1188,11 @@
"id": "56533eb9ac21ba0edf2244ba",
"title": "Understand String Immutability",
"description": [
- "In Javascript, strings are immutable, which means that they cannot be changed or modified once created. For example, this code:",
- "var myStr = \"Bob\";
",
- "will not change the contents of
myStr[0] = \"J\";myStr
to \"Job\", because the contents of myStr cannot be altered. Note that this does not mean that myStr
cannot be change, just that individual characters cannot be changes. The only way to change myStr
would be to overwrite the contents with a new string, like this:",
- "var myStr = \"Bob\";
",
+ "In Javascript,
myStr = \"Job\";String
values are immutable, which means that they cannot be altered once created.",
+ "For example, the following code:",
+ "
var myStr = \"Bob\";
myStr[0] = \"J\";
",
+ "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."
],