Create a function that takes three values:
h hoursm minutess secondsReturn the value that's the longest duration.
longestTime(1, 59, 3598) ➞ 1
longestTime(2, 300, 15000) ➞ 300
longestTime(15, 955, 59400) ➞ 59400
No two durations will be the same.