diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 654c9ca438..ed7b654e9e 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -219,9 +219,10 @@
"title": "Understanding Case Sensitivity in Variables",
"description": [
"In Javascript all variables and function names are case sensitive. This means that capitalization matters.",
- "MYVAR
is not the same as MyVar
nor myvar
. It is possible to have mulitpe distinct variables with the same name but different capitalization. It is strongly reccomended that for sake of clarity you do not use this language feature.",
- "
var someVariable;var anotherVariableName;var thisVariableNameIsTooLong;", + "
MYVAR
is not the same as MyVar
nor myvar
. It is possible to have multiple distinct variables with the same name but different casing. It is strongly reccomended that for sake of clarity you do not use this language feature.",
+ "var someVariable;", "
var anotherVariableName;
var thisVariableNameIsTooLong;