diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index f5632a19dcd..b286b97af31 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2223,12 +2223,12 @@
"title": "Use Conditional Logic with If Statements",
"description": [
"We can use if statements in JavaScript to only execute code if a certain condition is met.",
- "if statements require a boolean condition to evaluate. If the boolean evaluates to true, the statement inside the curly braces executes. If it evaluates to false, the code will not execute.",
+ "if statements require a boolean condition to evaluate. If the boolean evaluates to true, the statement inside the curly braces executes. If it evaluates to false, the code will not execute.",
"For example:",
- "
function test(myVal) {", - "If
if (myVal > 10) {
return \"Greater Than\";
}
return \"Not Greater Than\";
}
myVal is greater than 10, the function will return \"Greater Than\". If it is not, the function will return \"Not Greater Than\".",
+ "function test(myVal) {", + "If
if (myVal > 10) {
return \"Greater Than\";
}
return \"Not Greater Than\";
}
myVal is greater than 10, the function will return \"Greater Than\". If it is not, the function will return \"Not Greater Than\".",
"if statement inside the function to return \"Yes\" if testMe is greater than 5. Return \"No\" if it is less than 5."
+ "Create an if statement inside the function to return \"Yes\" if testMe is greater than 5. Return \"No\" if it is less than or equal to 5."
],
"tests": [
"assert(typeof myFunction === \"function\", 'message: myFunction should be a function');",
@@ -2251,9 +2251,9 @@
"function myFunction(testMe) {",
"",
" // Only change code below this line.",
- "",
- "",
- "",
+ " ",
+ " ",
+ " ",
" // Only change code above this line.",
"",
"}",