Variable not found

function setup () {
  let p1 = new Player ('z', 's', 50, 1);
  let p2 = new Player ('p', 'm', 425, 2);

Variables declared inside a function cease to exist when that function quits. :skull_and_crossbones:

Unless they become a closure to another inner function. :money_mouth_face: