Given a list of integers, return a new list where each element is the product of all the elements in the original list except the one at that index.
[1, 2, 3, 4]
[24, 12, 8, 6]
Bot