NumPy - Aggregation Functions
Given a 3D NumPy array
arr = np.array([[[1,2],[3,4]], [[5,6],[7,8]]]), which code correctly computes the product of elements along the last axis (axis=2)?