A question about fetching sorted records

A question about fetching sorted records

http://kbase.creator.zoho.com/records/fetch-records-within-a-range

in the above document, this:
  1. rec = Contact [ID != 0] sort by Added_Time range from 1 to 5; 
so, my question is, if I do a

  1. for each r in rec
  2. {
  3.       list.add (r.Name);
  4. }
Will it add Names from the records to the list in sorted order of Added_Time?