How about using fputcsv instead of custom escaping and custom print? ``` php $print = function(array $row) { $out = fopen('php://output', 'w'); fputcsv($out, $row, ";"); fclose($out); }; ```