Tell us what’s happening:
- You should assign a value to codingFact for the third time that also contains favoriteLanguage, and log it to the console.
Hi, guys I’m really just not sure of what I’m miss here.
Your code so far
console.log("Hello! I'm your coding fun fact guide!" );
let botName = "Super Bot" ;
let botLocation = "Rain Palace ";
let favoriteLanguage = "Rain Java ";
console.log ("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "Code qiuckly on " + favoriteLanguage + ".";
console.log (codingFact);
codingFact = "The Language is greater in " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = favoriteLanguage + " is easy coding " + ".";
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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot