Define the getLanguages(fileName) function.
Parameter: fileName is a string containing the name of a CSV file to read from and it has a default value of "languages.csv"
Return value: a list of strings representing the languages in the header row
Open the CSV file and get the header row with the languages and put it into a list.
Close the file and return the list.