1. Exclude Last Score from Number Array
Background
A teacher has an array of student test scores and needs to calculate the average without the last score.
Problem
Extract all scores except the last one for accurate averaging.
How to use
Enter the array [85, 90, 78, 92] in the input field.
Outcome
The output is [85, 90, 78].