Understanding the Differences between the freeCodeCamp and Browser Console WTH is happening?

Tell us what’s happening:

Your code so far


// 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);

let outputOne = "Try to get this to log only once to the browser console";
// Use console.clear() in the next line to print the outputOne only once
console.clear(outputOne);

console.log(outputOne);// Use console.log() to print the outputOne variable


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/debugging/understanding-the-differences-between-the-freecodecamp-and-browser-console

I’m not sure what your question is.

What behaviour are you expecting and what is actually happening?

BTW, you don’t need to pass any arguments to console.clear()