diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/declare-a-read-only-variable-with-the-const-keyword.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/declare-a-read-only-variable-with-the-const-keyword.md index 2b5b31fc7b..7b71031111 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/declare-a-read-only-variable-with-the-const-keyword.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/declare-a-read-only-variable-with-the-const-keyword.md @@ -71,13 +71,10 @@ assert.match(code, /const\s+FCC/); ## --seed-contents-- ```js -// Only change code below this line -var fCC = "freeCodeCamp"; -var fact = "is cool!"; -// Only change code above this line - +var fCC = "freeCodeCamp"; // Change this line +var fact = "is cool!"; // Change this line fact = "is awesome!"; -console.log(fCC, fact); +console.log(fCC, fact); // Change this line ``` # --solutions--