I'm not sure if this is even possible but lets say we have an array of strings and need to match them up with a corresponding array of images. Like :
["Patriots", "Broncos", "Cowboys"] = [pat.png, bronc.png, cow.png]
I've tried with the map function but it doesn't seem to work:
let footballArray = ["Patriots", "Broncos", "Cowboys"].map({return [pat.png, bronc.png, cow.png] })
Any help solving this issue is appreciated!