The correct answer is:
[“blue”, “red”, “yellow”]
What is the output of this program?
availableColors = ["red", "yellow", "blue"]
availableColors.sort()
print(availableColors)
(1 point)
Responses
[“red”, “yellow”, “blue”]
[“red”, “yellow”, “blue”]
an error message
an error message
[“blue”, “red”, “yellow”]
[“blue”, “red”, “yellow”]
[“yellow”, “red”, “blue”]
1 answer