Comparison with the Less Than Operation, please Help

Tell us what’s happening:
please where do i go wrong? ** testLessThan 24 is not activating, see my code below

Your code so far

function testLessThan(val) {
  if (val < 24) {  
    return "Under 25";
  }
  
  if (val < 55) {  // Change this line
    return "Under 55";
  }

  return "55 or Over";
}

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

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36.

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

This checks if val is less than (under) 24.

Thanks, but isn’t allowing me to pass the challenge?


Here is the screenshot

thank you sir, it has been solved