Position returned data results in App Lab (code.og)

We simply can’t find an answer this anywhere in the official documentation.

We are getting data on the screen like this…

var theStore = getText("searchlist");

readRecords("games", {store:theStore}, function(records) {
    if (records.length>0) {
        for (var i =0; i < records.length; i++) {
        write("-> " + records[i].title);
        }
    }
});

…which does get data, but the problem is that write() is not really the correct function to use, as it just returns all the data starting at the top of the screen and eventually rendering off screen, which absolutely no way to control it.

So how on earth can I just display the results in a way I can control the position? At the very least, I would be happy if the results were displayed in a textarea element.