N > 9998 || $program->N < 9001) { throw new InvalidArgumentException('Program number must be in range 9001 - 9998'); } $this->memory[$program->N] = $program; } public function read(int $N): ?Program { return @$this->memory[$N]; } }