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 String
val playerName: String = null
// 💡 Adding `?` makes this a nullable type
val playerName: String? = null****