var skills := ["Block", "Swing"]
func choose_random_skill(skills: ?) -> String:
return ""
I'm not sure what to put in ?. I was able to fix this code by using var skills: Array[String] = ["Block", "Swing"], but what do I use if it's not typed in the initialization?