Tell us what’s happening:
I created my trivia bot and it outputs to the console I believe correctly! However It keeps telling me I am missing components? I went over what is there and I can not see the problem.
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
const botName = "Kate";
const botLocation = "The computer here with you";
const favoriteLanguage = "JavaScript";
console.log ("My name is" + " " + (botName) + " " + "and I live on" + " " + (botLocation) + "." + "My favorite programmimg language is" + " " + favoriteLanguage + ".");
let codingFact = favoriteLanguage + " " + "is a coding language that uses camalcase.";
console.log(codingFact);
codingFact = favoriteLanguage + " " + "is used in the creation of webpages!";
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot