The function average(numbers) computes the mean of a list, and passing_grade(scores) uses it to decide if a student passes (average >= 60).
A student with scores [60, 70, 80] — average 70 — should clearly pass. But the function says 'fail'.
The arithmetic logic looks correct. Where is the counter going wrong?