I cannot get Step 14 to pass. I’m pretty sure I’ve got all 3 coding facts and logged them properly.
I’ve tried with and without the last codingFact, neither will pass.
Here’s my code:
console.log("Hello! I'm your coding fun fact guide!");
let botName = "Henry";
let botLocation = "Iowa";
let favoriteLanguage = "Javascript"
console.log("My name is " + botName + " and I live on " + botLocation + ".");
let codingFact = "My favorite programming language is " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = favoriteLanguage + " is so much fun to learn!";
console.log(codingFact);
codingFact = "What I love most about " + favoriteLanguage + " is that it's used to build so many different apps.";
console.log(codingFact);
codingFact = "What I REALLY love most about " + favoriteLanguage + " is that it's used to build so many different apps.";
console.log(codingFact);
console.log("It was fun sharing these facts with you. Goodbye! - " + (botName) + " from " + botLocation + ".");
