I am trying to make a randomly generated fantasy story, and it is not letting me refer to a list inside a list. line 36 is the bottom line of the code shown. I've looked it up and did what it said, but it isn't working! maybe because it was for printing text and a list, not making a list with a list inside it, and I don't understand the error message...
itemA = ["letter ", "scroll ", "message "]
specialPlace = ["waterfall.'", "rock pile.'"]
events = [f"a {mysticalCreature[randint(0,8)]} comes up to you and gives you a {itemA[randint(0,2)]} saying, 'come to the " + specialPlace + ", so you thank them and walk away."]```
Traceback (most recent call last):
File "main.py", line 36, in <module>
events = [f"a {mysticalCreature[randint(0,8)]} comes up to you and gives you a {itemA[randint(0,2)]} saying, 'come to the " + specialPlace + ", so you thank them and walk away."]
TypeError: can only concatenate str (not "list") to str