• cover code error?

Question related to mission Inside Block

 

In this problem, two arguments should be passed, but the second one is not. My guess is that it's probably a problem with the cover code in referee.py.

My code:

function isInside(polygon, point) {
    const [x, y] = point; // error occur here
    ...
}
30