What is the output of this program?
availableColors = ["red", "yellow", "blue"]
availableColors.insert(1, "orange")
print(availableColors[2])
(1 point)
Responses
red
red
yellow
yellow
orange
orange
blue
1 answer
orange