Build a Teacher Chatbot - Step 3

Tell us what’s happening:

Hey, I can’t figure out what I am doing wrong here. Please can I have some guidance?

Your code so far

console.log("Hi there!");


// User Editable Region

const botName = "teacherBot" 
const greeting = ("My name is ${botName}.");
console.log(greeting);

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15

Challenge Information:

Build a Teacher Chatbot - Step 3

this can work, but you need to use backticks around the string not quotes, so that the ${} syntax will work correctly, backticks are these `

Thank you for your help!