2. Create a new project named namedlab5_2. You will prompt the userfor an amount of names to enter, and then ask for that amount ofnames. You’ll store these names in a vector of strings. Then you’llsort the vector. Finally, you’ll print the results.
How many names?:4
Enter a name:Leonardo
Enter a name:Donatello
Enter a name:Michelangelo
Enter a name:Raphael
====================
Alphabetized
====================
Donatello                Â
Leonardo
Michelangelo        Â
           Raphael