Strucked here Returning Boolean Values from Functions

function isLess(a, b) {
  // Fix this code
   return a==b;
}

// Change these values to test
isLess(15, 10);

You are checking whether they are equal, not whether one is less than the other.