Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

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

Welcome to the forum @katelynnemorelli !

Please start with the first failing test and review the related user story. Find the place in your code that implements that user story and look at what is showing in the console. For example:

My name is Kate and I live on The computer here with you.My favorite programmimg language is JavaScript.

This is what the console displays. Do you see an issue with spacing? Is the second sentence logged separately as asked?

Happy coding!