Question: How to make intersect work for list of list?

[[1,2],[5,7]]intersect [[1,2]]

return [1,2]

there is error when run this.

Please Wait...