PHP - File Handling
What will be the output of this PHP code?
$file = fopen('test.csv', 'w');
fputcsv($file, ['apple', 'banana', 'cherry']);
fclose($file);
echo file_get_contents('test.csv');