Comparison with the Strict Equality Operator Level 168

Tell us what’s happening:
Tell me what to do or whats wrong with y code pleas help been working on this for a day and a half now and its driving me crazy.

Your code so far

// Setup
function testStrict(val) {
  if (val === 10) { 
   return "Not Equal"; }
  
  
}
  function testStrict(val) {
    if (val === 7) {
      return "Equal"; }
   
  } 
  function testStrict(val) {
      if (val === "7") {
     return "Not Equal"; 
  
      }  
  }
// Change this value to test
testStrict(10);
testStrict(7);
testStrict("7");```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299```.

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

this

  if (val) { // Change this line

is the only line you should change. I’d suggest you reset the problem and try again.