Q6
Single choice
Consider the following program code:
%color = (sun => yellow, apple => red);
reverse(%color);
@colorKeys = sort(keys(%color));
foreach(@colorKeys)
{print($color{$_} . );
}
What is the result of executing this program code?