local countries = {
["oi"] = {
["Currency"] = "U$";
["Ranking"] = 2;
["StartingMoney"] = 1500
};
["Hiii"] = {
["Currency"] = "HK$";
["Ranking"] = 2;
["StartingMoney"] = 500
};
["hello"] = {
["Currency"] = "UB$";
["Ranking"] = 2;
["StartingMoney"] = 4500
}
}
Now I don’t want make another table of arrays
like
local newtable = {"hi","hello","bruh"}
I want to get a random country name from the countries
But if I say print(countries[1]) it prints as nil
How do I get random country?