diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 217f823774..6736494d6b 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -3206,13 +3206,13 @@
"id": "56533eb9ac21ba0edf2244df",
"title": "Multiple Identical Options in Switch Statements",
"description": [
- "If the break
statement is ommitted from a switch
statement case
, the following case
statement(s) are executed unless a break
is encountered. If you have mutiple inputs with the same output, you can represent them in a switch
statement like this:",
+ "If the break
statement is omitted from a switch
statement case
, the following case
statement(s) are executed unless a break
is encountered. If you have multiple inputs with the same output, you can represent them in a switch
statement like this:",
"
switch(val) {", "Cases for 1, 2, and 3 will all produce the same result.", "
case 1:
case 2:
case 3:
result = \"1, 2, or 3\";
break;
case 4:
result = \"4 alone\";
}
answer
for the following ranges:1-3
- \"Low\"4-6
- \"Mid\"7-9
- \"High\"",
"Note",
- "case
statement for each number in the range."
+ "You will need to have a case
statement for each number in the range."
],
"releasedOn": "January 1, 2016",
"tests": [