function game() {
const key = Math.floor(Math.random() * 10)
console.log(key)
while (true) {
var ans = ui.prompt('ทายตัวเลข 0 - 9')
if (ans.getResponseText() == key) {
ui.alert('ถูกต้อง!!!')
break
} else if (ans.getSelectedButton() == ui.Button.CLOSE) {
break
}
}
}