Answer:
The correct answer is A) "red"
Step-by-step explanation:
Using arrays and lists are very helpful when writing programs. They help simplify programs by storing related data under one name.
In the question above the general name is myList. The related data are red, orange, yellow, green, blue, indigo, and violet.
This means that myList contains values a,b,c,d,e,f, and g. However myList[1] only contains value "red".
Cheers!