This program will make a list of random voting preferences. Each vote is of the form ABCD, where A is the first choice and D the last choice of the voter. Your task is to complete the program to determine the winner of the election, using the plurality method (first past the post). When you have finished, try to implement another method, such as Borda count, and compare the results. Look at the scripts of the monkey and penguin to see how the program works, and which keys you need to press.