Build a JavaScript Trivia Bot

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

const botName = "Error";
const botLocation = "Universe";
const favoriteLanguage = "JavaScript";

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

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

let codingFact = favoriteLanguage + " was created in just 10 days by Brendan Eich in 1995.";

console.log(codingFact);

codingFact = "Despite the name, " + favoriteLanguage + " has almost nothing to do with Java.";

console.log(codingFact);

favoriteLanguage = favoriteLanguage + " is the best language.";

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

Everything fails. One by one. Is this a bug?

1. You should log "Hello! I'm your coding fun fact guide!" to the console.
2. You should declare a botName variable. Double check for any spelling or casing errors.
3. Your botName variable should be a string.
4. You should declare a botLocation variable. Double check for any spelling or casing errors.
5. Your botLocation variable should be a string.

it’s not a bug, you should be seeing a syntax error in the console, you need to fix that

Welcome to the forum @henc !

Where were you asked to add this code?
Where is User Story #10 implemented?

Happy coding!

Yes. Unbeliveable that I didn’t discover it myself. I was probably already too sleepy yesterday. Thank you.