Learn
Next, we’ll want to turn the user’s string into something we can iterate over. A data structure made up of elements all in a line, you say? That sounds like an array!
By calling the .split
method on text
, we can transform it into an array.
Instructions
1.
Declare a variable called words
and set it equal to the result of calling .split
on text
.
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.