/run javascript // ๐ฆใจ๐๐ฆใฎใชในใ const llamas = ['๐ฆ', '๐๐ฆ']; // ใฉใณใใ ใชๆดๆฐใ็ๆใใ้ขๆฐ function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } // ใฉใณใใ ใช๐ฆใ้ธๆใใ้ขๆฐ function getRandomLlama() { const randomIndex = Math.floor(Math.random() * llamas.length); return llamas[randomIndex]; } // ใฉใณใใ ใชๅๆฐใ ใ๐ฆใ็ๆใใๆๅญๅใจใใฆใพใจใใ้ขๆฐ function generateLlamasString() { const count = getRandomInt(1, 5); let result = 'ใใซใ ใใ'; for (let i = 0; i < count; i++) { result += getRandomLlama(); } return result; } // ๐ฆใ่กจ็คบใใ console.log(generateLlamasString());
ใใซใ ใใ๐๐ฆ๐ฆ๐๐ฆ๐ฆ