Compute the Real Average
Fix a list-indexing bug so an average is computed from every score, not just one.
A beginner Linux challenge worth 3 points. Solve it hands-on in a real Linux environment in your browser - no local setup, no fake shells.
The Challenge
Scenario: /home/labuser/lab/scores.py should average 5 quiz scores, but it only ever looks at the first score in the list.
Task: Fix scores.py so it computes the true average of [72, 88, 91, 65, 100] (83.2) and writes Average: 83.2. Run check when ready.