|temp factorials index| factorials := #(3 5). index := 1. factorials size timesRepeat:[ temp := factorials at: index. factorials at: index put temp factorial. index := index + 1].