Suppose a program is a client of the Player class. Here is a snippet of code contained in the program
Player firstPlayer = new Player("Karel", "Warrior", "Mote Prime", 90);
Looking at the documentation of the class, you find the signature for the constructor, shown below.
Player Player(String name, String role, String location, int health);
Where would you find the formal parameters?