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 109dccfbfe1..fe0318e0ac6 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2629,7 +2629,7 @@ "will return \"Yes\" only if num is between 5 and 10 (5 and 10 included). The same logic can be written as:", "
if (num > 10 || num < 5) {
return \"No\";
}
return \"Yes\";
", "

Instructions

", - "Combine the two if statements into one statement which returns \"Inside\" if val is between 10 and 20, inclusive. Otherwise, return \"Outside\"." + "Combine the two if statements into one statement which returns \"Outside\" if val is not between 10 and 20, inclusive. Otherwise, return \"Inside\"." ], "releasedOn": "January 1, 2016", "challengeSeed": [