In C#, create a WPF project that contains two randomly generated
arrays, each containing 100 numbers. Include two Buttons labeled 1
and 2. Starting with position 0 in each array, ask the user to
guess which of the two arrays contains the higher number and to
click one of the two buttons to indicate the guess. After each
button click, the program displays the values of the two compared
numbers, as well as running counts of the number of correct and
incorrect guesses. After the user makes a guess, disable the
Buttons while the user views the results. After clicking a Next
Button, the user can make another guess using the next two array
values. If the user makes more than 100 guesses, the program should
reset the array subscript to 0 so the comparisons start over but
continue to keep a running score.