Which of the following answers best describes the output when you run the following code?

food = ["pizza", "hamburger", "salad", "chicken fingers"]
print(random.choice(food))
Select one:

a.
The last item in the food list

b.
The first item in the food list

c.
All of the items in the food list, concatenated together

d.
One of the items in the food list, randomly selected

d. One of the items in the food list, randomly selected