I feel like I understand the other pieces of this task, but I was curious about the class. Can someone explain what the second two sections are doing? public static class Cat { private String name; public Cat(String name) { this.name = name; } public String toString() { return "Cat " + this.name; } }