You have the following array:
array = np.array([12, 45, 47, 89, 45])
Which operation(s) will return the value 89?
Hint
Try to consider the index position of the element and think about the properties of the element itself (e.g., is it possible to get 89 via some statistical operation?). Also, keep in mind the difference between .max() and .argmax().