State the Problem: Write a program that generates random values to be added and asks the user for the answer to the math problem. Tools: Variables, while statement, if statement, evaluate statements, prompt functions, math object, alert statements Algorithim: Variabale numOne for first number variable num Two for 2nd number variable guess for user input variable correct for right answer while statement with response whenever the question is answered wrong and a different statement when it is answered right if statement displaying the two responses alert statement saying "your a smart cookie" alert statement saying "sorry try again" prompt asking "what is numOne + numTwo ?" math random object assigned to numOne and numTwo variables correct variable defined as numOne + numTwo Implementation: JavaScript was used to implement the algorithim for this program. Refinement: The program went as planned with no flaws.