Build a JavaScript Trivia Bot - 14 and 15 tasks are failing

Tell us what’s happening:

Tasks 14 and 15 are failing.

Here is my code:
//task 14
codingFact = “My favorite computer language is” + favoriteLanguage + “.”;
console.log(codingFact);
//task 15
console.log("It was fun sharing these facts with you. Goodbye! - " + botName + " from " + botLocation + “.”);

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
const botName = "Felipe";
const botLocation = "Rua Sesame";
const favoriteLanguage = " JS";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "The amazing" + favoriteLanguage + ".";

console.log(codingFact);

codingFact = "My favorite computer language is" + favoriteLanguage + ".";

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

codingFact should be assigned and logged three times.

1 Like

not related to failing, but you should not put a space here, and add space where they are needed in the strings where you are concatenating this into

1 Like

Thank you for noticing it