accessing List items within a List

Hi

How can I access a List item within a list? For example I have the following list

set myListMatrix to { {“Model A”,location, qty}, {“Model B”, location, qty}, {“Model C”, location, qty"… {} }

I know how to access item 1 of myListMatrix by referencing item 1 of myListMatrix, but how do I get access to the individual items within item 1?

Do I have to temporary store item 1 of myListMatrix in another flat list to get at the individual items? I would prefer not to do this.

Thanks,
Ezmeral

It’s just a matter of “item 1 of item 1 of myListMatrix”.