Given object of key-string values and an object of key - function values, call the functions in 2nd object (if possible) using the values in 1st object as function params. Return new object.
solution ({
"name": "drake",
"age": "33",
"power": 'finessing',
"color": "platinum"
}, {
"name": (e) => { return e + "kendrick" },
"power": (e) => { return "motivating" + e }
});
// will return :
{
"name": "drakekendrick",
"age": "33",
"power": "motivatingfinessing",
"color": "platinum"
}