I\'m trying to create a modal window, pass it an array of objects, have a user select one object from that array, and then have my modal pass back the object they\'ve select
This is how you get data back from modal in Ionic 4 :
contactsModal.onDidDismiss().then(data=>{ console.log('data came back from modal'); console.log(data); })