It said Define a callback function that, given a name, phone number, and email, adds a new contact object with that data to the array of contacts:
const [contacts, setContacts] = useState()
const addContacts = (contact) => { setContacts(prev => […prev, contact]) };
How can I add name, phone number and email as the objects of contact?