Comparison with the Strict Equality Operators

Tell us what’s happening:

Your code so far

// Setup
function testStrict(myVal) {
  if (myVal === 7) if (myVal == "7") { // Change this line
    return "Equal";
  }
  return "Not Equal";
}

// Change this value to test
testStrict(7);

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; CrOS x86_64 10032.86.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.140 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/comparison-with-the-strict-equality-operator

What is wrong with this?