Write an arrow function called solution that...

1. takes in 2 numbers and return the sum of the 2 input parameters

solution(5,9) // Should return 14
solution(4,1) // Should return 5

2. takes in 3 numbers and returns the sum of the 3 input parameters

solution(5,9,2) // Should return 16
solution(4,1,9) // Should return 14

3. takes in a number and returns true if the input number is greater than 5. Otherwise returns false

solution(9) // Should return true
solution(4) // Should return false

4. takes in 2 numbers and returns the larger number.

solution(5,9) // Should return 9
solution(4,1) // Should return 4

5. takes in 3 numbers and return the largest number.

solution(5,9,14) // Should return 14
solution(4,5,1)  // Should return 5

6. takes in 2 numbers and returns true if the first input parameter is greater than the second. Otherwise returns false

solution(5,9) // Should return false
solution(4,1) // Should return true

7. takes in 2 numbers and returns true if the sum of the 2 numbers is greater than 10. Otherwise returns false

solution(5,9) // Should return true
solution(4,1) // Should return false

8. takes in 2 numbers and returns a function. When the returned function is called, return the sum of the 2 input parameters.