What should stand instead of question marks for the following code to work and print true at the end
object Main extends App {
??? myDecision: Boolean = false
println("Do I want to go for a walk?")
myDecision = true
println(myDecision)
}