Sum all the values in an array

Given an array of numbers [9, 1, 3, 27, 15, -5] write a function that accepts the array of numbers and returns the sum of all the numbers in the array.
Display a message showing the result of the function and the values in the array.

Extra Credit: Create additional functions the return the average, max and min values of the array

Custom Values

Results Go Here.


My Solution