The requirements are: ✅ The program should display text on the screen. ❌The Apple class's addPrice method should not display text on the screen. ✅ The Apple class's applePrice variable must be a static int initialized to zero. ❌ The main method should call the addPrice method only twice. ❌ The Apple class's addPrice method should increase the cost of apples by the passed-in value. However, the method does not display text on the screen, and is run only twice. It also does increase the cost of apples by the passed-in value. What is wrong with this code? Is it a bug in the requirements?