It asks as to change the condition only.
export const lte = (x, y) => {
if (x) {
return `${x} is less than or equal to ${y}`;
} else {
return `${x} is NOT less than or equal to ${y}`;
}
}
But look at the check n. 4
4. lte should return the appropriate message if x is greater than y
instead of NOT less