Matplotlib - Image Display
Identify the error in this code snippet:
fig, axes = plt.subplots(2, 2)
for i in range(4):
axes[i].imshow(np.random.rand(5,5))
plt.show()