1) You must use two arrays named myList and yourList with capacity to store up to 11 whole numbers. 2) You must use a global constant variable to specify the arrays dimensions. 3) You must use functions to create, copy, and print the lists. 4) Function main(): • Creates the arrays • Repeats the following steps for as long as the user wants to continue (see sample run) Prompts the user to enter a multiplier Calls the functions specified below: A) generateList(): o Receives the array corresponding to myList and the multiplier through the parameter list o Returns the array populated from the first element to the last according to the following rules: 1. If the current element's index is odd, its value is set to multiplier * (index + 2). 2. If the index is even, its value is set to multiplier * index. B) copyList(): o Receives the arrays corresponding to myList and yourList through the parameter list. o Fills yourList with the values from myList in reverse order. C) displayList(): o Receives the array corresponding to yourList. o Prints the values in the array in order.