Stuck in the debugging challenge

Tell us what’s happening:
Hi! I would need a little bit of help here for this challenge. I think I’ve tried everything but just can’t pass the first requirement (using console.clear() in the browser console).

This is what is showing in my browser’s console:

DevTools failed to parse SourceMap: https://www.freecodecamp.org/assets/service-worker-5143f3dcc5d4f1827a851e30664e7ccd94e73a88847af8766f86ff8744323b49.js.map

Your code so far

This is what I did:

  1. Copied and pasted the entire “let output=…” in the browser console.
  2. Entered “console.clear()” in the browser console.
  3. Entered “console.log(output)” in the browser console
  4. Entered “console.log(output)” in the freecodecamp console.

// Open your browser console.
let output = "Get this to log once in the browser console and twice in the freeCodeCamp console";
// Use console.clear() on the next line to clear the browser console.


// Use console.log() to print the output variable.


// Check the two consoles to see the difference. The freeCodeCamp console should have printed the variable twice, once for each test of this challenge. The browser console should only print the variable once because you cleared it first.

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36.

Challenge: Understanding the Differences between the freeCodeCamp and Browser Console

Link to the challenge:

you need to type in the freecodecamp editor tho, otherwise how can the tests know what you did?

Finally figured it out. Thanks a lot!