let group = { title: "Our Group", students: ["John", "Pete", "Alice"], showList() { this.students.forEach((student)=> { console.log(this.title + ": " + student); }); }, }; export { group };