Create a function that takes an array and returns the sum of all numbers in the array.
getSum(of: [2, 7, 4]) ➞ 13 getSum(of: [45, 3, 0]) ➞ 48 getSum(of: [-2, 84, 23]) ➞ 105
N/A