Supposestatic void nPrint(String message, int n)  {         …

Supposestatic void nPrint(String message, int n)  {               while (n > 0)             {                   System.out.print(message);                  n–;             }   }What is the printout of the call nPrint(‘a’, 4)?