This function is slow if you have many rows. You can replace ``` php $keys = array_keys($this->rows); $rowKey = array_pop($keys); ``` by ``` php $rowKey = count($this->rows) - 1; ```