local tablething = {
    "anything",
    "hippo",
    150,
    "lemons",
    true
}

local function Wait(seconds)
    local thingy = os.time()
    
    repeat until os.time() > thingy + seconds
end

while true do
    --Wait(2)
    
    table.insert(tablething, "the funny thing")
    
    for i,v in pairs(tablething) do
        print("The funny " .. tostring(v) .. " [The funny placement is also '" .. i .. "']\n")
    end
end

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: