You have the following array:
array = np.array([[7, 80, 15], [6, 9, 4], [9, 4, 3]])
array.prod(axis=X) returns the following array: [8400 216 108]. What is the index of the axis and should be in place of X?
In the answer box, write down a single integer.