for(let i=0; i<100; i++){
x = Math.random * innerWidth;
y = Math.random * innerHeight;
vX = Math.random * 10 - 5;
vY = Math.random * 20 - 10;
r = Math.random * 30;
console.log(x);
circleArray.push(new Circle(x,y,vX,vY,r));
}
for(let i=0; i<100; i++){
x = Math.random * innerWidth;
y = Math.random * innerHeight;
vX = Math.random * 10 - 5;
vY = Math.random * 20 - 10;
r = Math.random * 30;
console.log(x);
circleArray.push(new Circle(x,y,vX,vY,r));
}