Tell us what’s happening:
Hello, I am fairly certain I have completed tests 12-14, but I am getting an error saying I should log “codingFact” despite it already being logged. I had a friend check over my code and they did not find an error on my end either. Please advise.
Your code so far
console.log ("Hello! I'm your coding fun fact guide!");
let botName = "Sebastian";
let botLocation = "Dylan's laptop";
let favoriteLanguage = "Java";
console.log ("My name is " + botName + " and I live on " + botLocation + ".");
console.log ("My favorite programming language is "+ favoriteLanguage + ".");
let codingFact = ("My favorite coding language, " + favoriteLanguage + ", uses strings like this.");
console.log (codingFact);
codingFact = ("A new fact about " + favoriteLanguage + " is that it is the first coding language Dylan is learning.");
console.log (codingFact);
codingFact = ("A third fact about " + favoriteLanguage + " is that it is also a name for coffee.");
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; rv:151.0) Gecko/20100101 Firefox/151.0
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot