I want to remove Ben "True" data. How will I remove the true data?
customer_data = [["Ainsley", "Small", True], ["Ben", "Large", False], ["Chani", "Medium", True], ["Depak", "Medium", False]]
customer_data[2][2] = False
customer_data.remove()
print(customer_data)