Instructiоns:Yоu аre tаsked with prоcessing cybersecurity incident dаta and saving it to a CSV file. Write a function write_records_to_file(data, filename) that performs the following: Function input: data: A list of dictionaries, where each dictionary is a cybersecurity incident. The keys are the field names, and the values are the data. Assume all dictionaries have the same keys. filename: A string with the name of the output file. The file should overwrite any existing file with the same name. Function output: The function should write the data to a text file in CSV format: The first line of the file should be a header row containing the dictionary keys, separated by commas. Each subsequent line should represent the record values, separated by commas. A return is not required. Example Input: data = [ {"incident_id": 1, "type": "Phishing", "severity": "High"}, {"incident_id": 2, "type": "Malware", "severity": "Medium"}, {"incident_id": 3, "type": "DDoS", "severity": "Critical"}, ] filename = "cybersecurity_incidents.csv" Example File Output (cybersecurity_incidents.csv): incident_id,type,severity 1,Phishing,High 2,Malware,Medium 3,DDoS,Critical