Create a function called secondLargest
that takes an array of numbers and returns the second largest number.
secondLargest([23, 66, 50, 12, 6]) β 50
secondLargest([65, 34, 100, 22, 85]) β 85
secondLargest([67, 22, 19, 12, 80]) β 67
Good Luck π