Answer:
Modify
If scores[index] > highest then highest = scores[index]
End Of highest
Name = students[index]
End For Display
to
If scores[index] > highest then highest = scores[index]
Name = students[index]
End Of highest
End For Display
Step-by-step explanation:
In the code, you posted the code segment that gets the name of the student with the highest score is outside the if condition that determines the highest.
To make correction, we only need to bring this code segment into the loop.
See Answer