Comparison with the Inequality Operator - FYI: Error in example

Tell us what’s happening:
Two of the lines in the illustrative example is wrong:

Each of the highlighted examples should have a value of true.

Your code so far


// Setup
function testNotEqual(val) {
  if (val != 99) { // Change this line
    return "Not Equal";
  }
  return "Equal";
}

// Change this value to test
console.log(testNotEqual('99'))

Your browser information:

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

Link to the challenge:

Ah, you’re right. It is not strict inequality. It was a long day and was too tired to see it… This morning, it’s so obvious. Thanks, @camperextraordinaire.