diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 20c9bd4a39f..52052d578ad 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -757,7 +757,7 @@
"title": "Declare String Variables",
"description": [
"Previously we have used the code",
- "var myName = \"your name\"",
+ "var myName = \"your name\";",
"\"your name\" is called a string literal. It is a string because it is a series of zero or more characters enclosed in single or double quotes.",
"
string variables: myFirstName and myLastName and assign them the values of your first and last name, respectively."