The join() method allows you to concatenate all elements of an array and returns a new string:
```js
const frontEnd = ['HTML', 'CSS', 'JS'];
const btnClass = cssClasses.join(' ');
console.log(btnClass); //HTML CSS JS
```
🌕 You are diligent and you have already achieved quite a lot. You have just completed day 5 challenges and you are 5 steps a head in to your way to greatness. Now do some exercises for your brain and for your muscle.