Correct the following code:
// classic childern's favorite"99 bottles of beer" public class BeerSong { public static void main (String[] args) { int beerNum = 99; String word = ābottlesā; while (beerNum > 0) { if (beerNum == 1) { word = ābottleā; // singular, as in ONE bottle. } System.out.println(beerNum + ā ā + word + ā of beer on the wallā); System.out.println(beerNum + ā ā + word + ā of beer.ā); System.out.println(āTake one down.ā); System.out.println(āPass it around.ā); beerNum = beerNum - 1; if (beerNum > 0) { System.out.println(beerNum + ā ā + word + ā of beer on the wallā); } else { System.out.println(āNo more bottles of beer on the wallā); } // end else } // end while loop } // end main method } // end class