InstrumentsInfo = {	
    [1] = {Name = "Piano", Strings = true, Price = 4e4, Diffuculty = "Medium",}, -- use k later
    [2] = {Name = "Violin", Strings = true, Price = 1e3, Diffuculty = "Hard",},
	[3] = {Name = "Trumpet", Strings = false, Price = 2e3, Diffuculty = "Easy",},   
}

for _,v in pairs(InstrumentsInfo) do
   print(v.Name) -- prints ALL names in the moduele
end

print(InstrumentsInfo[1].Name) -- prints an individual name in the moduele

test = 1
test += 1

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: