What does the safe call operator `?.` return when it is called on a `null` receiver?val name: String? = null val len: Int? = name?.length println(len)