Description: Return the type of the sum of the two arguments Solution: function typeOfSum(a, b) { let c = a + b; return typeof c; }