You have registered a file dataset named `csv_folder` that references a folder containing multiple CSV files in an Azure blob storage container. You plan to use the following code to run a script that loads data from the file dataset. You have created and instantiated these variables: ```python datastore = ws.get_default_datastore() dataset = Dataset.get_by_name(ws, 'csv_folder') script_params = { # to do: code segment to be inserted here } ``` You need to pass the dataset to the script to ensure it can read the files it references. Which code segment should you insert to replace the comment? | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz