Null safety
Kotlin variables can’t hold null values by default. For a variable to hold a null value, it must be of a nullable type.
// ✘ Null can not be a value of a non-null type Stringval playerName: String = null
// 💡 Adding `?` makes this a nullable typeval playerName: String? = null****