diff --git a/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md b/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md index e4dfa86ee98..b202e399eb8 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md @@ -14,8 +14,8 @@ In the lecture videos, you learned how to work with string concatenation using t ```js let firstName = "John"; -// result: "Hello, my name is John." "Hello, my name is " + firstName + "."; +// result: "Hello, my name is John." ``` Remember that you need to be mindful of spaces when concatenating strings with variables.