NumPy - Array Operations
Identify the error in this code snippet:
import numpy as np x = np.array([True, False]) y = np.array([False, True]) result = x and y print(result)
