diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 6a466cd8d3..217f823774 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -972,7 +972,7 @@ "id": "56533eb9ac21ba0edf2244b7", "title": "Concatenating Strings with Plus Operator", "description": [ - "In JavaScript, the + operator when used with a String value, it is called concatenation operator. You can build a string out of other strings by concatenating them together.", + "In JavaScript, the + operator when used with a String value, it is called a concatenation operator. You can build a string out of other strings by concatenating them together.", "", "'My name is Alan.' + ' And I am able to concatenate.'", "", @@ -982,7 +982,7 @@ ], "releasedOn": "January 1, 2016", "tests": [ - "assert(myStr === \"This is the start. This is the end.\", 'message: myStr should have a value of This is the start. This is the end');", + "assert(myStr === \"This is the start. This is the end.\", 'message: myStr should have a value of This is the start. This is the end.');", "assert(editor.getValue().match(/\"\\s*\\+\\s*\"/g).length > 1, 'message: Use the + operator to build myStr');" ], "challengeSeed": [