x = ["apple", "banana", "cherry"]
try:
print(x[5])
except IndexError:
print("You are trying to access a item that does not exist!")
except:
print("Something else went wrong")