Update table using command bar

I’m trying to fill up / update table using command bar
like i want to fill up emoty table on my script by loops but i just can’t find the way to do that
script.Source seems like not helping
i want something like this

local Table = {}

for i=1,5 do
	Table[i] = "Example"..i
end```