public class Multiplication {
  
  public static void main (String[] args) {
    
    final int FIRST_MAX = 5;
    final int SECOND_MAX = 6;
    
    // Use nested for loops to print multiplications
    // for 1 through FIRST_MAX by 1 through SECOND_MAX
    // SEE SAMPLE OUTPUT


    
  }
  
}
Your task, then, is to work in the area of the code I specify. In the main method, you will need to do the following things:
  1. Write your outer for loop, which will run for FIRST_MAX times
  2.     Write your inner for loop, which will run for SECOND_MAX times
  3.         Print a string like so: 1 * 4 = 4. (In other words, the current outer loop index, the '*' symbol, the current inner loop index, the '=' symbol, and the product of the two current indices.
  4.     Skip a line in output.
Note that, if you change the values of FIRST_MAX and SECOND_MAX, the output will look different.

Program output example:

+ Expand Output
1 * 1 = 1
1 * 2 = 2
1 * 3 = 3
1 * 4 = 4
1 * 5 = 5
1 * 6 = 6

2 * 1 = 2
2 * 2 = 4
...
        
Question: How did the process of editing this program go for you? What were your main challenges and how did you overcome them? What did you learn that may be of use as you move along in this class?