Implement a function joinDataSet(fieldName, customerFile, processorFile, skipUnmatched) that merges two CSV-like datasets. Inputs: - fieldName (String): the column name to join on (guaranteed to exist in both file headers) - customerFile (List<String>): first row is a header, subsequent rows are data; columns are comma-separated - processorFile (List<String>): same format as…