Get certain data inside a table that is inside a table

I have a songs table that has multiple values (best I can explain, look at the code below)

local songs = {{0,false},{1234,true}}

if I wanted to print the first table inside the table but I only wanted it to print “false” how would I do that?
I have tried print(songs[1]) and that prints the table
image

print(songs[1][2])

This will make it print the first element (first table) and then the second element inside the first table. (false)

Thanks. Roblox tricked me when it gave me the error after I placed the “[]”

1 Like