PHP - File Handling
What will be the output of this PHP code?
$file = fopen('data.csv', 'w');
fputcsv($file, ['John', 'Doe', 30]);
fclose($file);
$file = fopen('data.csv', 'r');
$row = fgetcsv($file);
fclose($file);
echo $row[1];