records and object (class)
define a record format: define a class
name the class (record format) define the fields (variables) for the record format public class season {
int seasonDays;
String seasonName;
}
// declare a single record (object)
season winter = new season()
array of records, array of objects
declare an array of records: array of objects
season[] seasonList = new season[4];