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 90de89b27bb..bf7551a2819 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2103,7 +2103,7 @@ "
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 or equal to 5."
+ "Create an if statement inside the function to return \"Yes\" if testMe is greater than 5 and return \"No\" otherwise."
],
"challengeSeed": [
"// Example",