Create a function makeCapital
that takes a string as an argument and converts the first character of each word to uppercase. Return the newly formatted string.
makeCapital("my name is ali") ➞ "My Name Is Ali"
makeCapital("fikrcamp Bootcamp") ➞ "Fikrcamp Bootamp"
makeCapital("i live In Paris") ➞ "I Live In Paris"
Good Luck 😀