In the following for loop code, the variable name is "student" because it can only be called "student" and cannot be replaced with another valid variable name such as "pupil".
students=["Alton", "Hiroto", "Skye", "Tobias"]
for student in students"
print("Hello", student)