In order to use an optional's value, we need to unwrap the optional.
We've used if let (also known as optional binding) before. Still, might there be another way?
Yup! The ! operator is unsafe, which is why we need to be sure that the optional isn't nil before we use it.
Didn't we use the ? sign to declare the optional?