it is only printing "b" instead of printing "a" sometimes to. what should i do?
button.Touched:Connect(function()
local numbers = {
["a1"] = 1,
["a2"] = 2,
["a3"] = 3,
}
local i = math.random(1, 3)
local randomNumber = numbers[i]
if randomNumber == 1 then
print("a")
else
print("b")
end
end)