Problem 14. Write a function to find mean of 5 numbers.

let mean = (a, b, c, d, e) => {
    return (a+b+c+d+e)/5;
}

console.log(mean(1, 2, 3, 4, 5));   // 3