<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import matplotlib.pyplot as plt


def line_plot(numbers):
    plt.plot(numbers)
    plt.ylabel("Random numbers")
    plt.show()


if __name__ == "__main__":
    numbers = [2, 4, 1, 6]
    line_plot(numbers)
</pre></body></html>