Intro Blizzard Entertainment called your office. They want you to design their next game. What you will learn Primarily:Business logic:IfLoop Client Name Bliizzard Entertainment Process Name GuessingGameLoopIf Description Create a game, that:Assign a “secret” variable between 1-100Take a user input (a number between 1-100)Check if the number equals the secret variableYes: Write a congratulations messageNo: Run the user input again and check again (continue over and over until the user has guessed the number) Hints Set variable: To assign the secret variableDisplay input dialog: Take user inputIfUser Input = Secret NumberDisplay message and congratulate the userLoopUser Input <> Secret NumberDisplay input dialog and ask the user againBut use an If and Else if to give the user a hint, if the number is too high or too lowAdvancedTry to make the loop only run 5 guesses and then end no matter what (hint: use a counter variable and change the loop condition) Video Guide