Use a replacer array of JSON.stringify to return only the year, month and day properties of jsonStructure, and assign stringData with the result.
var jsonStructure = { "year": 2011, "month": 8, "day": 3, "hour": 8, "minute": 49 };
/* Your solution goes here */