Consider the support of: ```js a="test" if a.type() == "STRING" puts("is a string") else puts("is not a string") end ``` ```js while a != 4 puts(a) a = a + 1 end ```