Skip to content

Commit e9ee37c

Browse files
authored
fix(curriculum): clarify greeting bot hint (freeCodeCamp#61758)
1 parent eff6a8c commit e9ee37c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Your `botIntroduction` variable should hold the value of a string.
4242
assert.isString(botIntroduction);
4343
```
4444

45-
You should use string concatenation with the `+` operator to join the string `"My name is "` with the `bot` variable followed by a period (`.`). Be mindful of spaces.
45+
You should use string concatenation with the `+` operator to join the string `"My name is "` with the `bot` variable followed by a period (`.`). Be mindful of spaces. Assign this concatenated string to the `botIntroduction` variable.
4646

4747
```js
4848
assert.equal(botIntroduction, "My name is teacherBot.");

0 commit comments

Comments
 (0)