NumPy - Array Manipulation
Find the issue in this code snippet:
import numpy as np x = np.array([[1, 2], [3, 4]]) y = np.array([5, 6, 7]) result = np.hstack((x, y))
