State the Problem: Write a program that asks the user a math problem and continues to ask until the user enters the right answer. Tools: While loop, variables, if statements, math objects Algorithim: variable for guess variable for correct while statement establishing loop if statement inside while statement asking guess else statement establishing wrong message alert statement establishing a response to correct or wrong answer *evaluate both guess and correct to numerics* Implementation: JavaScript was used in writing the algorithim above in Notepad and it worked. Refinement: Something that came up that i initially did not consider in my algorithim was the fact that the program had to evaluate the string values of the user input into numeric values.