How to print variable equals in tables

This is my table:

local mytable = {["roblox"] = true,
           ["based"] = false,
           ["myself"] = true,
          }

and this is my loop:

for i,v in pairs(mytable) do
--i want to to get the roblox and true
end

help me, i just want to atleast know how to print roblox and true (roblox = true)

I’m kind of confused with what you want,

print(mytable.roblox) --//prints 'true' because the "roblox" key in the dictionary has a value "true"

You can print i,v since print can have multiple arguments.

print(i,v)