Directly access returned data table row without loop?

I have a query that returns only 1 row always.

If I put that returned object into a variable, is there a way to access the results directly? I can get to the data by looping the row but that seems silly.

I want to be able to do something like:

//** Load the table data into a variable
var = Sellers(table)

//** Access the column data from the 0 row
Alert(var[0][‘MircrostorePath’])

This is my test code. I want to eliminate the loop.

You do not need the loop.

Here’s one way to do it:
UI Builder - ConsoleDemo - Backendless 2022-06-02 14-40-59

and here’s another:
Image 2022-06-02 14-42-11

Thanks @mark-piller