if I’m following, you can do something like this, for example:
local list1
local list1_items = {"one", "two", "three"}
local list2
local list2_items = {"a", "b", "c"}
function init()
list1 = UI.ScrollingList.new(0, 0, 1, list1_items)
list2 = UI.ScrollingList.new(0, 0, 1, list2_items)
end