diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index b253f42162..60c92b2796 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -380,7 +380,7 @@
"id": "56533eb9ac21ba0edf2244ac",
"title": "Increment a Number with Javascript",
"description": [
- "You can easily increment or add one to a Javascript variable with the ++
operator.",
+ "You can easily increment or add one to a variable with the ++
operator.",
"i++;
",
"is the equivilent of",
"i = i + 1;
",