I'm having trouble figuring out why this isn't functioning as expected.
customer_data = [["Ainsley", "Small", True], ["Ben", "Large", False], ["Chani", "Medium", True], ["Depak", "Medium", False]]
customer_data_final = customer_data + [
["Amit", "Large", True],
["Karim", "X-Large", False]]
Provides list of customers
print ("Here is a list of all of your customers:" + "\n" )
for customer in customer_data_final:
print(sorted(customer[0]))
