Given the following Area class, how would I call the calcAreaSquare method in AreaTest.java with square with side length of 6? public class Area { ... public static double calcAreaSquare(double x) { return x * x; } }