NumPy - Indexing and Slicing
Given two arrays
a = np.array([1, 2, 3]) and b = np.array([4, 5, 6]), how can you use np.where() to create an array that takes elements from a if they are even, otherwise from b?