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 ebe63ec6cf..2e8c897553 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2024,9 +2024,9 @@
"id": "56533eb9ac21ba0edf2244c0",
"title": "Global vs. Local Scope in Functions",
"description": [
- "It is possible to have both a local and global variables with the same name. When you do this, the local
variable takes precedence over the global
variable.",
+ "It is possible to have both a local and global variables with the same name. When you do this, the local
variable takes precedence over the global
variable.",
"In this example:",
- "
var someVar = \"Hat\";", + "
function myFun() {
var someVar = \"Head\";
return someVar;
}
var someVar = \"Hat\";", "The function
function myFun() {
var someVar = \"Head\";
return someVar;
}
myFun
will return \"Head\"
because the local
version of the variable is present.",
"myFunction
to override the value of outerWear
with \"sweater\"
."
@@ -2043,9 +2043,9 @@
"",
"function myFunction() {",
" // Only change code below this line",
- "",
- "",
- "",
+ " ",
+ " ",
+ " ",
" // Only change code above this line",
" return outerWear;",
"}",