I got the foll. pl/sql code

DECLARE
thisvar TASKARRAY;
....
...

...

FOR TASK_REC IN TASK_CUR LOOP
thisvar := TASKARRAY();
FOR i in 1..n_recs LOOP
thisvar.extend();
thisvar(i) := TASK(task_rec.task_code,
task_rec.specified,
task_rec.bonus_amt,
'N/A',
task_rec.operative_no);


i need to output thisvar(i).values, how can i print the output.

Rgds

Srini