I'm looking for a way to obfuscate the alphabet. What I specifically mean by "obfuscating the alphabet" is replacing the input letters with the second array letters. For example, I want to replace all letters in this array (the second array): ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'];
with this array:
["z", "y", "x", "w", "v", "u", "t", "s", "r", "q", "p", "o", "n", "m", "l", "k", "j", "i", "h", "g", "f", "e", "d", "c", "b", "a"]
so like if my input letter is "a b c", the output letter would be " z y x".
question from:
https://stackoverflow.com/questions/65830254/obfuscating-and-replacing-the-alphabets-with-javascript