Roblox Lua - 应为 Color3,得到字符串

Roblox Lua - Color3 expected, got string

local colorTable = {
    ('11, 13, 48'), 
    ('35, 48, 48'), 
    ('6, 47, 6'),
    ('91, 5, 7')
}

local value = math.random(1,#colorTable) 
local picked_value = colorTable[value] 
script.Parent.Background.BackgroundColor3 = picked_value

我的错误代码是 Color3 expected, got string,有什么可以解决的吗?我的目标很简单,将特定颜色的 rgb 随机化为框架背景。

Color3 对象可以通过 Color3.fromRGB 创建。

local colorTable = {
    Color3.fromRGB(11, 13, 48), 
    ...
}