Why only 10 listings...?

When I try this code snippet from Steinbergs Script pages, it only lists 10 names, even though there are more the 10 zones. Why?

zones = this.program:findZones(true)
if zones[1] then
for i, zone in ipairs(zones) do
print(zone.name)
end
else
print(“Could not find any zones!”)
end

Do you have the max lines set to 10?

Yep, that’s it!