As PROC PLOT sends each output object to the Output Delivery System, ODS sends each one to the HTML and Listing destinations because their lists and the overall list are set to SELECT ALL (the defaults).
proc plot data=iron;
   plot fe*loss='*' / vpos=25 ;
   label fe='Iron Content'
       loss='Weight Loss';
   title 'Plot of Iron Versus Loss';
run;