Issue of answer in Intro to App Development with Swift

There is a problem in Lesson 11, Making Decisions.→REFLECTION QUESTIONS Question 3 of 3.

The code snippet says:

let numbers = 100
if numbers > 99 {
   print("What a smallish number!")
} else if numbers < 150 {
   print("That's not so big.")
}
print("Good Bye.")


The constant "number" is bigger than 99, so it should print "What a smallish number!""Good Bye.".


But the answer goes another way.

To confirm, I tried it on playground, the result differs from the answer as well.

So I guess it's a typo or something.


Thanks.


Really enjoy learning with Intro to App Development with Swift.