fix(curriculum): clarify greeting bot hint (#61758)

This commit is contained in:
Collin Fugate
2025-08-11 04:11:08 -04:00
committed by GitHub
parent eff6a8c768
commit e9ee37c603
@@ -42,7 +42,7 @@ Your `botIntroduction` variable should hold the value of a string.
assert.isString(botIntroduction);
```
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.
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.
```js
assert.equal(botIntroduction, "My name is teacherBot.");