Extracted text: Exercise 5 Use the function design recipe to develop a function named max occurrences.The function takes a list of integers, which may be empty. The function returns value of the maximum occurrences in a given list. For example, when the function's argument is [2, 4, 7,9, 8, 2, 6, 5, 1, 6, 1,2, 3,4, 6,9, 1, 2], the function returns the value that has the maximum occurrences, in this case is 2. You can assume there will not be two values with the maximum number of which occurrences, that means [2,2,6,6] will not happen. For this exercise, you are allowed to use the method "count"