Everything i have done seems right but im still stuck

Tell us what’s happening:

Your code so far

function testLogicalOr(val) {
  // Only change code below this line

  if (val > 20 || val < 10) {
    return "Outside";
    
  }

 
  // Only change code above this line
 return "inside";
}

// Change this value to test
testLogicalOr(10);

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/comparisons-with-the-logical-or-operator

return "Inside";