onAccepted: {
if((!win))
{
if(rand == text)
{
txtRand.text = "Bien Joué !\nVous pouvez maintenant réessayer."
win = true
}
else if(rand < text)
txtRand.text = "C'est moins"
else if(rand > text)
txtRand.text = "C'est plus"

focus = false
txtRand.focus = true
}

if(win){
win = false
text = "Rentrez une valeur comprise entre 0 et 100"
rand = Math.random()* 100
}
}