let canvas = document.getElementById("paradeCanvas");
let ctx = canvas.getContext("2d");
const beerMugBand = []; // Array to store each animated beer mug
class BeerMug {
constructor(x, y, speed, instrument) {
this.x = x;
this.y = y;
this.speed = speed;
this.instrument ...
Weight: 1