Build a Mathbot - Step 1

Tell us what’s happening:

Hi there,

As far as I know my code is correct and also gives the correct output to the console. Can anyone tell me why it won’t pass?

Kind regards

Your code so far

// User Editable Region
const botName = "MathBot";
const greeting=`Hi there! My name is  ${botName} and I am here to teach you about the Math object!`;
console.log(greeting);
// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:152.0) Gecko/20100101 Firefox/152.0

Challenge Information:

Build a Mathbot - Step 1

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-mathbot/66ea7adae8053065a64f9002.md at main · freeCodeCamp/freeCodeCamp · GitHub

confirm the whitespace between the is ${botName}

you have a double space after is here, that makes the string not match what is requested

Hiya, thanks so much i did not spot that one