Python
import random

# Encrypted ASCII values
msg_values = [84, 104, 105, 97, 103, 111, 32, 101, 104, 32, 98, 97, 105, 116, 111, 108, 97]

# Scrambling the values (index mapping)
index_map = list(range(len(msg_values)))
random.shuffle(index_map)  # Shuffle indices

# Shuffled message
scrambled_msg = [msg_values[i] for i in index_map]

# Reconstruct the message
decoded_chars = [''] * len(msg_values)
for i, idx in enumerate(index_map):
    decoded_chars[idx] = chr(scrambled_msg[i])

# Print the hidden message
print("".join(decoded_chars))
Thiago eh baitola