Create a class (in C++)named Card. The class should have two int data members named face and suit.
- The class should have a constructor that recieves the two ints and uses them to initialize the data members.
-Two Static arrays of strings representing the faces and suits.
- a toString function that returns the Card as a string in the form of "face of suit" (you can use the + operator to concatenate strings)