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