firstName: n => {
    if (n && typeof n !== "number") {
      return "failed, wrong input";
    }
    if (n && typeof n === "number" && n < 101) {