Annalyn's Infiltration task 2

/**
 * A useful spy captures information, which they can't do if everyone's asleep.
 *
 * @param {boolean} knightIsAwake
 * @param {boolean} archerIsAwake
 * @param {boolean} prisonerIsAwake
 *
 * @returns {boolean} Whether or not you can spy on someone.
 */
export function canSpy(knightIsAwake, archerIsAwake, prisonerIsAwake) {
 return knightIsAwake || archerIsAwake || prisonerIsAwake  
}

Hi I am facing a problem with this exercise, I think the solution is good but the tests does not pass.
I am sure If any of these booleans are true, this function return true.

Thanks!

This looks like a duplicate of this Discord #get-help post.

That code looks about right. What do the tests say is wrong?

The code does not match the comment / explanation of the function:

A useful spy captures information, which they can’t do if everyone’s asleep.

If you cannot figure it out, hint:

There is a difference between everyone is asleep and anyone is asleep.