=== Compliant solution
[source,kotlin]
----
fun pickNumber() : Int {
var i = 0
var j = 0
i++
return ++j
}