Join Strings with join - Strange why it doesn't work!

Tell us what’s happening:

Your code so far

var joinMe = ["Split","me","into","an","array"];
var joinedString = '';

// Only change code below this line.

joinedString = joinMe.join('');

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/join-strings-with-join

It’s a bit hard to tell, but you need a space in between your quotes in the .join method.

If there is not a space in there it won’t pass the tests.