Create a function that takes an array of numbers and returns the mean (average) of all those numbers.
Mean([1, 0, 4, 5, 2, 4, 1, 2, 3, 3, 3]) ➞ 2.55 Mean([2, 3, 2, 3]) ➞ 2.50 Mean([3, 3, 3, 3, 3]) ➞ 3.00