my_list = ['apple', 'banana', 'cherry']
reversed_list = my_list[::-1]
print(reversed_list)