Answer:
Modify
<em>If scores[index] > highest then highest = scores[index]
</em>
<em>End Of highest</em>
<em>Name = students[index]
</em>
<em>End For Display</em>
to
<em>If scores[index] > highest then highest = scores[index]
</em>
<em>Name = students[index]
</em>
<em>End Of highest</em>
<em>End For Display </em>
<em />
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.
<em>See Answer</em>