const array = [];for(let i = 0; i < 30; i++) {array.push(Math.floor(Math.random() * (20 - (-10) + 1) + (-10)));}
console.log(array);
const array = [];
for(let i = 0; i < 30; i++) {
array.push(Math.floor(Math.random() * (20 - (-10) + 1) + (-10)));
}
console.log(array);