<script> const bots = [], bot = { pos: 0, hp: 50 }, length = 15; bot.gen = Array.from({length} , _ => Math.random() * 100|0); bots.push(bot) document.write(JSON.stringify(bots, "", 4)) </script>