Create a function called decodeSecretMessage() that decodes a secret message represented by a series of Unicode code points. The function should take an array of Unicode code point values, called codePoints, as input and return the decoded secret word as a string.
To decode each character in the message, you can use a loop to iterate over the codePoints array inside the function.