To display the lowest value, start with "lowest value:" and on the second line, display the last list element.
"lowest value:"
Make sure to pick print("lowest value:"), followed by print(apple_stocks[2]).
print("lowest value:")
print(apple_stocks[2])