Getting product info

Howdy,
I was wondering how can i get specific info of an item, so i took random item and how to make it so it prints for example only the name of it, not everything?

local Marketplace = game:GetService("MarketplaceService")
local ID = 6275662626

local info = Marketplace:GetProductInfo(ID)

print(info)

This returns a Dictionary as stated here: MarketplaceService | Roblox Creator Documentation. I urge you to look at API references and previous forum posts.