Build a Mathbot - Step 2

Tell us what’s happening:

It doesn’t let me continue. When checking the code pops up the message below.
(You should have a console.log() that logs the string “The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1.”.)
The string logs correctly.
Am I not seeing something?

Your code so far

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

console.log ("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1.");

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Build a Mathbot - Step 2

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

hello @Jell787 welcome to the forum!

please try removing the space between console.log and ().

It worked.
But how? Wasn’t an issue in previous workshops?
Thank you!