Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

It keeps telling me that I need to console log codingFact but I did can some one help me

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
const botName = "YaboiShade";
let botLocation = "a remote island in the jungle";
let favoriteLanguage = "Javascript"
console.log("My name is "+ botName + " and I live on " + botLocation + ".")
console.log("My favorite programming language is "+ favoriteLanguage + ".")
let codingFact= "Did you know that the real name of "+favoriteLanguage+" is not "+favoriteLanguage+" but ECMAscript?"
console.log (codingFact);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Review each User Story (not the tests) carefully and make sure it’s implemented correctly.

How are you running this ?
Command line or on a browser?
what is the actual error?

The problem was just that I had a space between the console log and codingFact