function encryptedMessage() { const numericSymbol = [78, 73, 78, 74, 65, 32, 67, 65, 84]; const message = numericSymbol.map(decipher => String.fromCharCode(decipher)).join(' '); return message; } console.log(encryptedMessage());
function encryptedMessage() { const numericSymbol = [78, 73, 78, 74, 65, 32, 67, 65, 84]; const message = numericSymbol.map(decipher => String.fromCharCode(decipher)).join(' '); return message; } console.log(encryptedMessage());