Display sold_tickets, sort the list, and then display it again to see the difference.
sold_tickets
Make sure to pick print(sold_tickets), followed by sold_tickets.sort(), and finally print(sold_tickets).
print(sold_tickets)
sold_tickets.sort()