Study the following Python code:
def calculate_average(scores):
total = 0
for score in scores:
total = total + score
return total / len(scores)
high_scores = [85, 92, 78, 95, 88]
print(calculate_average(high_scores))
Identify the identifier (name) of a data structure used in this code.