fix(curriculum): hint text in step 1 of Build a MathBot workshop (#61602)

This commit is contained in:
Kannan
2025-07-30 14:48:48 +05:30
committed by GitHub
parent 259962fe5e
commit 393c4493c4
@@ -49,7 +49,7 @@ Your `greeting` variable should be a string.
assert.isString(greeting);
```
You should use assign the following sentence to the `greeting` variable: `"Hi there! My name is [MathBot goes here] and I am here to teach you about the Math object!"`. Make sure to replace `[MathBot goes here]` with the `botName` variable.
You should assign the following sentence to the `greeting` variable: `"Hi there! My name is [MathBot goes here] and I am here to teach you about the Math object!"`. Make sure to replace `[MathBot goes here]` with the `botName` variable.
```js
assert.strictEqual(greeting, "Hi there! My name is MathBot and I am here to teach you about the Math object!");