PROC SORT sorts the observations by the variable Region.
proc sort data=color;
   by region;
run;