You can define a field in a structure as an array; for example:
structure WeeklyHours is
string LastName
float DayHours[5]
end structure
This example defines a structure type that contains one string field called LastName, and one array field called DayHours that contains five float elements.