title: Combine an Array into a String Using the join Method
challengeType: 1
---
## Description
<sectionid='description'>
The <code>join</code> method is used to join the elements of an array together to create a string. It takes an argument for the delimiter that is used to separate the array elements in the string.
Use the <code>join</code> method (among others) inside the <code>sentensify</code> function to make a sentence from the words in the string <code>str</code>. The function should return a string. For example, "I-like-Star-Wars" would be converted to "I like Star Wars". For this challenge, do not use the <code>replace</code> method.
</section>
## Tests
<sectionid='tests'>
```yml
tests:
- text: Your code should use the <code>join</code> method.