## Words ### Instructions **Split** the provided variable `sentence` using spaces as separator to create an array of words. You will assign the result to a `words` variable that you will declare. Hint: Check the link below to see what the method split does and how to use it. ### Notions - [devdocs.io/javascript/global_objects/string/split](https://devdocs.io/javascript/global_objects/string/split)