How do i add a number?

Hello in this part:

local rarityFonts = {
	Bread = Enum.Font.SourceSans,
	Beans = Enum.Font.SourceSansBold,
	Sandwich = Enum.Font.Gotham,
	Soup = Enum.Font.ArialBold,
	Potatoes_With_Stake = Enum.Font.Fantasy,
	Burger = Enum.Font.Bodoni,
	Chicken_Wings = Enum.Font.Antique,
	Feastables = Enum.Font.Cartoon,
	Waffles = Enum.Font.FredokaOne,
	Strawberries = Enum.Font.Highway,
	Pasta = Enum.Font.Oswald,
	Wagyu_Beef = Enum.Font.LuckiestGuy,
	Matsutake_Mushrooms = Enum.Font.Creepster,
	Watermelon = Enum.Font.AmaticSC,
	Sushi = Enum.Font.Nunito,
	Sonics_Fries = Enum.Font.Roboto,
	Mashed_Potatoes = Enum.Font.DenkOne,
	Caviar = Enum.Font.Garamond,
	Fugu = Enum.Font.PermanentMarker,
	Lobster = Enum.Font.Garamond,
}

local rarityColors = {
	Bread = Color3.fromRGB(255, 255, 255),
	Beans = Color3.fromRGB(0, 255, 0),
	Sandwich = Color3.fromRGB(0, 0, 255),
	Soup = Color3.fromRGB(255, 0, 255),
	Potatoes_With_Stake = Color3.fromRGB(255, 215, 0),
	Burger = Color3.fromRGB(128, 0, 128),
	Chicken_Wings = Color3.fromRGB(255, 165, 0),
	Feastables = Color3.fromRGB(255, 255, 0),
	Waffles = Color3.fromRGB(0, 128, 128),
	Strawberries = Color3.fromRGB(255, 69, 0),
	Pasta = Color3.fromRGB(139, 0, 139),
	Wagyu_Beef = Color3.fromRGB(255, 140, 0),
	Matsutake_Mushrooms = Color3.fromRGB(75, 0, 130),
	Watermelon = Color3.fromRGB(255, 20, 147),
	Sushi = Color3.fromRGB(186, 85, 211),
	Sonics_Fries = Color3.fromRGB(148, 0, 211),
	Mashed_Potatoes = Color3.fromRGB(30, 144, 255),
	Caviar = Color3.fromRGB(255, 99, 71),
	Fugu = Color3.fromRGB(60, 179, 113),
	Lobster = Color3.fromRGB(255, 69, 0),
}


i want to add numbers to the names is this possible?
I have another code which is


local rarities = {
	"Bread 1/2",
	"Beans 1/5",
	"Sandwich 1/10",
	"Soup 1/52",
	"Potatoes With Stake 1/104",
	"Burger 1/208",
	"Chicken Wings 1/416",
	"Feastables 1/800",
	"Waffles 1/1000",
	"Strawberries 1/1500",
	"Pasta 1/3000",
	"Wagyu Beef 1/5000",
	"Matsutake Mushrooms 1/10000",
	"Watermelon 1/15000",
	"Sushi 1/25000",
	"Sonics Fries 1/50000",
	"Mashed Potatoes 1/100000",
	"Caviar 1/150000",
	"Fugu 1/500000",
	"Lobster 1/1000000",
}


So, this code is what you see on the UI, but it won’t work if the name isn’t the same as in the previous two scripts. what do i do?

Okay now the problem is solved