Format a string of names like 'Bart, Lisa & Maggie'.'
titleGiven: an array containing hashes of names
Return: a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
Example1234567891011list([ {name: 'Bart'}, {name: 'Lisa'}, {name: 'Maggie'} ])// r
...