Steps taken so far
I have this array
How can i insert the values from just the second array element into my string? I don’t want to iterate over the whole array, just pull the Image URL and Share Link values for the second array element.
If I were doing it in ( zero-indexed ) Ruby, I would just do
MyArray[1].image_url and MyArray[1].share_link
to get the second element values.