Create a function called `secondLastElement` which will take a `List a` and return the second to last element of the list. ``` λ> myButLast [1,2,3,4] 3 λ> myButLast ['a'..'z'] 'y' ```
Create a function called
secondLastElementwhich will take aList aand return the second to last element of the list.