# Create 2 arrays, using MatPlotLib, plot the graph with the content of the two arrays, with coordinates plotted on # x-axis and y-axis. import numpy as np import matplotlib.pyplot as plt from random import randint points = np.array([ [randint(0, 100) for _ in range(50)], [randint(0, 100) for _ in range(50)], ]) fig, ax = plt.subplots() ax.plot(points[0], points[1], 'ro') plt.show()