Setting each item in a list to a new list

Basically I have list like follows

and I need to somehow make the list look like this:

How would I do this?

How about:

set L to {"one", "two", "three", "four"}
set NL to {}
repeat with I in L
	set end of NL to (contents of I) as list
end repeat
NL --> {{"one"}, {"two"}, {"three"}, {"four"}}

Works great! Thanks so much!