Image in Array

I am sure this is pretty basic but I am stuck. Thank you

Your struct doesn't have MyImage. So either add it, or remove the supplied arguments.

Thanks for your reply. I tried declaring var MyImage: Image but doesn't solve it. Sorry to take up your time on this. Thanks

You can't get Image objects from strings (eg. face1). You'd need to create Image from the string first.

Contact(MyImage: Image("face1"), ...)

Thank you