declare type nt_type is table of number; nt nt_type := nt_type (1, 3, 5); begin for i in 1..nt.count loop dbms_output.put_line(nt(i)); end loop; end;