diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 6fe58512ef..7f82747f4a 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -954,9 +954,12 @@ }, { "id": "56533eb9ac21ba0edf2244b7", - "title": "Concatanting Strings with the Plus Operator", + "title": "Concatenating Strings with Plus Operator", "description": [ - "In Javascript the + operator for strings is called the concatanation operator. You can build strings out of other strings by concatanating them together.", + "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.", + "", + "'My name is Alan.' + ' And I am able to concatenate.'", + "", "

Instructions

", "Build myStr from the strings \"This is the start. \" and \"This is the end.\" using the + operator.", ""