```php public function find(callable $comparator): ?mixed { foreach ($this as $key => $item) { if ($comparator($item, $key)) { return $item; } } return null; } ```