Create strings that, when evaluated with eval(), equal the number associated with the string name. The only alphanumeric characters allowed is the substring "chr".
zero = "write"
one = "your"
two = "strings"
fifty = "here"
eval(zero) ➞ 0
eval(one) ➞ 1
eval(two) ➞ 2
eval(fifty) ➞ 50