-- Homework 22, problem 2: Sum the list. -- -- Compute the sum of the numbers in `scores` and print: -- Total: -- -- Run with: lua exercises/22/homework/02-sum-list.lua local scores = {12, 7, 24, 9, 30} -- Your code goes here: