student_scores = [78, 65, 89, 86, 55, 91, 64, 89] high_score = 0 for s in student_scores: if s > high_score: high_score = s print(f"the highest score is {high_score}")