Arrange the following statements to create a bar chart: (A) import matplotlib.pyplot as plt (B) y=[50, 60, 70] (C) plt.plot(x, y) plt.show() (D) plt.bar(x, y) plt.show() (E) x=['Mon', 'Tue', 'Wed'] Choose the correct answer from the options given below: