I not sure what this method is called or how or why this works?? Any thoughts? public class Cat { private static int catCount = 0; public Cat() { catCount++; } public static int getCatCount() { //write your code here return catCount; } public static void setCatCount(int catCount) { //write your code here Cat.catCount = catCount; } public static void main(String[] args) { } }