I have a variable which has type int but each int is corresponding to a word that is meaningful, and if I call tab on the values, those words are listed. I used levelsof [var] local(levels) to store all the unique values in a string, and I iterate through to print them like this

Code:
foreach l of local levels{
    display "`l'"
}
How do I make it so that I am displaying the word that I am interested in rather than the number which corresponds to it when I do this?