var feedback = {};
feedback.data = ["Great!", "See ya", "Not a fan..."];
feedback.display = function() {
this.data.forEach(function(item) {
console.log(feedback.display());
});
}
The goal here is to showcase the content stored within the feedback object, such as "Great!", "See ya", and "Not a fan...". Feedback is structured as an object, and while I could have placed the function inside the curly braces, I opted for a different syntax approach.