Assume the birth() method means the People object celebrated a birthday and the age() method returns their age. What is the output from the following code? People x; x = new People(“Johnny”, 7); int a = 0; while(a < 3) { x.birth(); a++; } System.out.println(x.age()); Compile error 10 3 5