Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

the program is saying my code is wrong even though it is correct

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Mr.Python who teaches JavaScript";
let botLocation = "Hawai";
let favoriteLanguage = "JavaScript (But I love Python!)";
console.log("My name is (botName) and I live on (botLocation)");
let codingFact = "Did you know that "+favoriteLanguage+" is completely different from Java";
console.log(codingFact)

Your browser information:

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

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @ben.jireh30,

When a variable is enclosed in parentheses in the instructions, you are meant to concatenate the variable to the string.

Happy coding