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