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 π