   --cięcie--
   const BALL_SIZE = 5;
   let ballPosition;

   let xSpeed;
   let ySpeed;

   function initBall() {
     ballPosition = { x: 20, y: 30 };
     xSpeed = 4;
     ySpeed = 2;
   }

   const PADDLE_WIDTH = 5;
   --cięcie--
