// Clouds const clouds = []; for (let i = 0…
// Clouds
const clouds = [];
for (let i = 0; i < 5; i++) {
clouds.push({
x: Math.random() * canvas.width,
y: 50 + Math.random() * 150,
width: 80 + Math.random() * 100,
speed: 0.3 + Math.random() * 0.5
});
}