Select the ARRAY statement that defines the array in the following program.
data coat;
input category high1-high3 / low1-low3;
array compare{ 2,3} high1-high3 low1-low3;
do i = 1 to 2;
do j = 1 to 3;
compare{ i, j} = round( compare{ i, j}* 1.12);
end;
end;
datalines;
5555 9 8 7 6
4 3 2 1
8888 21 12 34 64
13 14 15 16
;
run;
Wähle eine der folgenden: