How do I get the testLogicalOr to return "Inside"?

Tell us what’s happening:

Your code so far


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

  if (val > 10 || val < 20) {
    return "Outside";
  }
  // Only change code above this line
  return "Inside";
}

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-or-operator

Take a closer look at how you are using the < and > operators.

thank you, i realized i switched it oops