//this is a constructor function var Song = function(title, artist){ //arguments refer to second title and second artist this.title = title; this.artist = artist; }