Answer:
python
Step-by-step explanation:
import random
secret_length = input("how long you want the secret to be?\\")
secret_length = int(secret_length)
characters = r"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789$%^&*("
secret = ""
for i in range(secret_length):
secret = secret + random.choice(characters)
print(secret)