Is there a way to convert each word of a string to each have an array? For example, say I have the variable below.
Let str = "Just typing out some words";
I would like to convert this to what I have below
Let arrs = [[Just], [typing], [out], [some], [words]]
Is there any way that I can achieve this?