/** * A dictionary for all of the months of the year */ const monthDictionary: Array = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]; export { monthDictionary };