You can index pl/sql tables by other types besides integers. This way you can create "dictionary" like structures, which can make your code much easier to read:
Example:
DECLARE
TYPE dictionary IS TABLE OF NUMBER VARCHAR2(200) INDEX BY VARCHAR2(100);
dict dictionary;
BEGIN
dict('NAME') := 'John Doe';
dict('DATE'dict('CITY') := sysdate'New York';
dbms_output.put_line('Name:' || dict('NAME'));
END;
