I’m probably missing something very obvious here but in the challange debugging, understanding the difference between FCC console and chrome console, the console.log only prints once.
Why does this happen when the excercise says that it should print to console twice?
// Open your browser console
let outputTwo = "This will print to the browser console 2 times";
// Use console.log() to print the outputTwo variable
console.log(outputTwo);