The following SAS program is submitted:proc sort data = work.employee;by descending fname;proc sort data = work.salary;by descending fname;data work.empdata;merge work.employeework.salary;by fname;run;Why does the program rail to execute?