AngularJS Guess Game

I am not sure how to do this and stuck. Please help

Create the various view sections in the HTML file.
User input for the user to enter their guess
3 Buttons for (1) check guess, (2) give up (3) start new game Message view
i. Shows the message “Start guessing” (Initially or after the start new is clicked) ii. Shows the message “Guess higher” or “Guess lower” or “You got it!”, (after
check guess is clicked, message is dependent on the input) iii. Shows the number when give up is clicked
Create the controller file app.js with the module template.

Initialise the number to guess property and method to generate the random number. Hint: Use JavaScript Math.floor(Math.random() * ) + .