How can I submit this on my freeCodeCamp
Your code so far
console.log("Hello! I'm your coding fun fact guide!")
let botName="Mary";
let botLocation="Nigeria";
let favouriteLanguage="Javascript";
console.log("My name is " + botName + " and live in " + botLocation + ".");
console.log("My favorite programming language is " + favouriteLanguage + ".");
let codingFact = "my favourite language is very instresting " + favouriteLanguage;
console.log(codingFact);
codingFact= "my favourite language is " + favouriteLanguage + ".";
console.log(codingFact);
codingFact= "I love my favourite language " + favouriteLanguage + ".";
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 (iPhone; CPU iPhone OS 26_1_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/142.0.7444.148 Mobile/15E148 Safari/604.1
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot