Write a function that maps a string into a dictionary of name, string, and occupation pairs.
organize("Jameel Saeb, 15, CEO of facebook") ➞ {
"name": "Jameel Saeb",
"age": 15,
"occupation": "CEO of facebook"
}
organize("John Mayer, 41, Singer") ➞ {
"name": "John Mayer",
"age": 41,
"occupation": "Singer"
}
organize("") ➞ {}