Matplotlib - Real-World Visualization Patterns
Identify the error in this code for creating a 2x2 grid of plots:
fig, axes = plt.subplots(2, 2)
for i in range(4):
axes[i].plot([1, 2, 3])
plt.show()