NumPy - Broadcasting
Identify the error in this code snippet:
import numpy as np X = np.array([[1, 2], [3, 4], [5, 6]]) y = np.array([10, 20, 30]) result = X + y
