let bottlesOfBeer = 99;
while(bottlesOfBeer > 0){
if (bottlesOfBeer < 2){
console.log(`${bottlesOfBeer} bottle of beer on the wall,`);
console.log(`${bottlesOfBeer} bottle of beer`);
console.log("Take it down, pass it around")
bottlesOfBeer--;
console.log(`${bottlesOfBeer} bottles of beer on the wall`);
}else{
console.log(`${bottlesOfBeer} bottles of beer on the wall,`);
console.log(`${bottlesOfBeer} bottles of beer`);
console.log(`take one down, pass it around`);
bottlesOfBeer--;
console.log(`${bottlesOfBeer} bottles of beer on the wall`);
}
}
bottlesOfBeer = 99;
console.log("No more bottles of beer on the wall, no more bottles of beer");
console.log("Go to the store and buy some more")
console.log(`${bottlesOfBeer} bottles of beer on the wall`);