Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

No entiendo la parte donde te pide que incluyas el valor de favoriteLanguage a codingFact ya intente con varios codigos y aun no funciona es el paso numero 11 donde dice “Debes dar codingFactun valor que incluya favoriteLanguage.” me podrian orientar porfavor

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
const botName = "Shadow";
const botLocation = "Tokio";
const favoriteLanguage = "JavaScript";
console.log("My name is Shadow and I live on Tokio.");
console.log("My favorite programming language is JavaScript.");

let codingFact = "My language favorite is " + favoriteLanguage;





Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

This challenge is all about learning to concatenate variables inside a string.

“My name is (botName) and I live on (botLocation).”

In the instruction above, the variables you created are in parentheses. That means that you should log the requested string using your variables to replace what is in parentheses rather than hard coding the value of the variables. You did it correctly here:

But please pay careful attention to spacing and punctuation.