Is "list" a type in codea?

if I have a list say

myList = {pi = 3.14, cheese = true}

and I put this list into the type() function, how would I check to make sure myList is a list? would I just say:

if type(myList) == “list” then ‘code here’ end

If so, is the word “list” supposed to be a string?

nvm, I found out that the type is not “list” but rather “table”