Calling $query->result() returns each result as a generic object (stdClass), which means you can access the properties (i.e. columns) with the arrow notation, as you would a normal PHP object:
$result = $query->result();
// $result is an array of results, so loop over it
foreach($result as $row) {
echo $row->reserve_number;
// L290517122756-5678
}