This list represents the names of customers in line to purchase a recently released gaming console:
customers ? [ "Conner", "Missy", "Roy", "David", "Phil", "Adrian", "Jack", "Lawson" ]
The code snippet updates the list:
x ? customers[3]
customers[3] ? customers[5]
customers[5] ? x
What does the customers
variables store after the above code is executed?