When awk reads a line from the input file into a record. It seperates that record into fields based on a delimeter stored in the built in variable FS
(Field Seperator), the default is a space, but the Field Seperator could be any character or regex. The space is special. When FS
is a space, awk strips leading and trailing whitespace from the record. Then processes the fields.