Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

non capisco perche mi da errore alla prima e ultima prova.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");

let botName = "Fabio";
let botLocation = "Planaltina";
let favoriteLanguage = "Javascript";

const defaultAnswer = "My name is " + botName + " and I live on " + botLocation + ".";
console.log(defaultAnswer);

const continueAnswer = "My favorite programming language is " + favoriteLanguage + ".";
console.log(continueAnswer);

let codingFact = "That's a fun fact about your bot's favorite coding language " + favoriteLanguage + ".";
console.log(codingFact);

codingFact = 'My favorite hobby is coding with ' + favoriteLanguage +'.';
console.log(codingFact);

codingFact = "The new Friendly Neighbourhood is " + favoriteLanguage + ".";
console.log(codingFact);

console.log("It was fun sharing these facts with you. Goodbye! - " + botName + "from " + botLocation ".");

Your browser information:

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

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

hello!

You are missing something right before the ".” in this line. Also ensure there is proper spacing between the words as mentioned in User Stroy#11