Create a function that converts dates from one of five string formats:
The return value will be a list formatted like: [MM, DD, YYYY], where MM, DD, and YYYY are all integers. Using the examples above:
convert_date("January 9, 2019") ➞ [1, 9, 2019]
convert_date("Jan 9, 2019") ➞ [1, 9, 2019]
convert_date("01/09/2019") ➞ [1, 9, 2019]
convert_date("01-09-2019") ➞ [1, 9, 2019]
convert_date("01.09.2019") ➞ [1, 9, 2019]
N/A