I need help with this haskell function
Write a function productLastPart which, only using library functions, returns the product of the last n numbers in the list, where n is the first argument to the function. 
productLastPart :: Int -> [Int] -> Int