With the ! sign, we create an implicitly unwrapped optional. That way, it's still an optional but unwrapped from the start.

Nice! Implicitly unwrapped optionals need to have a value or they'll crash our program. some() shows value is an implicitly unwrapped optional.

That'd compile but crash during runtime; also, optionals are nil by default.