Binary Agents: Not Returning Text

Tell us what’s happening:

My code below is returning: ‘\u0000’
My code converts from binary to decimal, then from decimal to text using String.fromCharCode() - except it’s not returning text. Can someone tell me what I’m doing wrong?

Your code so far


function binaryAgent(str) {

  let arr = str.split(' ');
  let decimals = [];

  for (let i = 0; i < arr.length; i++) {
    decimals.push(parseInt(arr[i], 2));
  }
  return String.fromCharCode(decimals.join(', '));
}
binaryAgent("01000001 01110010 01100101 01101110 00100111 01110100 00100000 01100010 01101111 01101110 01100110 01101001 01110010 01100101 01110011 00100000 01100110 01110101 01101110 00100001 00111111");

Your browser information:

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

Link to the challenge:

Probably this. If you join the array into a string before passing it in fromCharCode() I can’t imagine it working.

See the documentation on the method:

I suggest using the spread operator (...) to keep a similar syintax.
Or you could use it for each element in the array using forEach() or map()