my new string is unassigned to a variable or something.
who writes this stuff what happens to simple English.
anywho. its wrong and it works in Repl.it.
Your code so far
[spoiler]
function binaryAgent(str) {
newString = str.split(' ');
answer = [];
for(i=0;i < newString.length;i++){
answer.push(String.fromCharCode(parseInt(newString[i], 2)));
}
return answer.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 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
.
Link to the challenge:
[/spoiler]