diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 0de5970ca9b..90454cbd692 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -3602,12 +3602,12 @@
"id": "56533eb9ac21ba0edf2244e0",
"title": "Replacing If Else Chains with Switch",
"description": [
- "If you have many options to choose from, a switch statement can be easier to write than many chained if/if else statements. The following:",
+ "If you have many options to choose from, a switch statement can be easier to write than many chained if/else if statements. The following:",
"
if (val === 1) {", "can be replaced with:", "
answer = \"a\";
} else if (val === 2) {
answer = \"b\";
} else {
answer = \"c\";
}
switch (val) {", "
case 1:
answer = \"a\";
break;
case 2:
answer = \"b\";
break;
default:
answer = \"c\";
}
if/if else statements into a switch statement."
+ "Change the chained if/else if statements into a switch statement."
],
"releasedOn": "January 1, 2016",
"challengeSeed": [