console.log("welcome to the apple counter");
var apples = (20)
if (apples > 50) {
    console.log("we have too many apples");
  } else if (apples < 10) {
    console.log("not enough apples");
  } else if (15 < apples < 25) {
    console.log("we have a good amount of apples");
  } else {
    console.log("we have a weird amount of apples");
  }
welcome to the apple counter
we have a good amount of apples