C sharp language using if-else statements and randomNum statements.
Assignment Description Write a program that has a user try to guess whether a person is a writer or an actor. To do this, you will have to code two writers and two actors, four names in total, and show the user one of these names. The user then guesses whether they think the displayed name belongs to a writer or an actor. After each guess, the program tells the user if they are correct, displays the name, and reveals the correct answer. The program then continues to ask the user the remaining names. Tasks 1) The program must contain the following: a. A comment header with your name, class, and a description of the program b. At least 5 comments explaining what your code does c. Four string variables, two writers and two actors d. Output asking the user whether they think the name displayed is a writer or an actor i. If the user is correct, congratulate them and output the name and answer ii. If the user is incorrect, output the name and correct answer Note: You do not need to randomize the displayed names. You can display each name in sequence (one after the other).