Add a class to your java2_Lesson2 project named FrameTest.
In it, write a Java application which is displayed in a Frame. The application should declare 12 variables (all of type int) using proper syntax and naming conventions.
Make them have values of 1 through 12, and then use the System class to print out the names and respective values for 6 of them in the console. The names and respective values for the other 6 should be printed/displayed in the Frame.
The values should not be hardcoded into the output commands; rather, you should use the variable names to access their values.
Make sure the user can close the frame without resorting to the "terminate" Console choice.