Can't see the image in a New-UDCard

I am simply trying to put a jpg file on a UD-Card. I’m really new here so it takes me awhile. Started learning with the console version and now I’m trying to learn v3. I believe that i have to utilize a published folder which i did. I tested it in the url and I can see the image. but when I try it in a card it just shows what looks like a small icon in the upper left hand corner of the card. Here’s the simple script:

New-UDDashboard -Content {
New-UDCard -Image (New-UDImage -Url “/images/image.jpg”) -Content {}
}

What am i doing wrong here?

I found that this worked for me:

New-UDDashboard -Content {
New-UDCard -Content {
} -Image ‘/images/image.jpg’
}

Although I have no idea why. It suits my needs though.