Answer:
The program in Python is as follows:
from random import randrange
colors = ['Red', 'Green', 'Blue', 'Orange', 'Yellow']
randNum = randrange(5)
print(colors[randNum])
Explanation:
This imports the randrange module from the random library
from random import randrange
This initializes the list of colors
colors = ['Red', 'Green', 'Blue', 'Orange', 'Yellow']
This generates a random number between 0 and 4 (inclusive)
randNum = randrange(5)
This prints the corresponding color
print(colors[randNum])