public class CircleOfLife { public static void main(String args[]){ //Create a new Species object here, passing in the appropriate arguments //print out the species' growth rate //use the species' toString here //call populationInXYears here //Create a new Species object here, passing in the appropriate arguments using a very large number for the population (e.g. 100000000) //print out the species' population to make sure it is set to 1500 //call populationInXYears here, feel free to hardcode in the int to be passed to the method //call mergeSpecies here //test that mergeSpecies is doing what you expected it to } }