Confused / String Array and Table Parameters

In an earlier post, I gave the following example for beat values and strings:

local beatValue = { 1, 0.5, 0.25, 0.125, 0.0625 }
local beatString = { "1/1", "1/2", "1/4", "1/8", "1/16" }

I made a small error:

“1/1” refers to a whole bar, which equals 4 beats. So, the beat values should be 4 , 2, 1, and so on.

I edited this in my original post.

Cheers,

Matthias