Iterate over the given list to read the elements
List<String> colors = new List<String> { 'red', 'green', 'blue', 'orange'};
DEBUG| red
DEBUG| green
DEBUG| blue
DEBUG| orange
for(Integer i=0;i<colors.size();i++) { System.debug(colors[i]); }