on startup
  put "foo" into element 1 of theList
  put "bar" into element 2 of theList
  put "baz" into (*element 1 of*) element 3 of theList
  put the keys of theList into myKeys
  if myKeys = empty then
    put "String: "
    put theList
  else
    put "Array:"
	put the keys of element 3 of theList into keyz
	if keyz = empty then
	  put element 3 of theList
	end if
  end if
end startup
