Create a design that loops until the player wants to stop playing. Each loop, tell the player to clear their mind and ask their yes/no question. Have them press any key to reveal the 8-balls answer. Then use the random number process to pick an array element choice. Use that choice to display the matching message out.Step 2:Create a parallel array to hold the count that each message is displayed. Think about this. Do you need to initialize your array of counts?Now when you display the 8-ball message, display the number of times that message has been picked.Step 3:After the player picks Yes for stop play, display any messages that did not get picked (the tally is 0 for that array element).Step 4:Now set your numChoices = 20 and run your program for at least 15 times.