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