const type = () => {
return randomAlphabet();
}

const typingMon_key = () => {
return repeat(type, 10)
}

const moneky_test_env = () => {
while (true) {
getnewmonkey:
if (typingMon_key() === 'begoonihyuong')
return true;

goto getnewmonkey;
}
};