What is wrong with the following printDog method? public class Dog private String name; private int age; public void printDog(String name, int age) System.out.printin(nameis ageyears old”) nothing is wrong with this method You cannot print out name and age because they are both private fields It should return a value It should not have any parameters
OR
OR