Challenge hasSteed

Hi i’m just going through the chapter’s first challenge but i’m confused what to do? I mean i only need to declare a variable and then make it un-assign so later it can be used to track record? Is this the challenge? Please check my code.

    fun main(args: Array<String>) {
    val playerName = "John"
    val hasSteed = ""
    var experiencePoints = 5
        println(experiencePoints)
        println(playerName)
}