Complete the Week 13 lesson (found by clicking on the Week 13 Lesson link in the sidebar) Create a C++program (3 points) o At the top of the file include the following comments . Your name The purpose (core concept found below) of the program . The date created o Create a Person class: . Add the following variables (set access so that only this class can access them) . Name . CampUS Include the following functions (do not take any user input in the functions. Pass all needed values in as parameters). Make all functions accessible to classes and programs outside the Person class: Set (mutator) functions for all variables – A display function to display the user’s name and campus. o In the main function: . Create an array of Person objects. Set the size to of the array to 5 Add three people to the array. Do not gather user input. Instead, hard code the deata. Make sure you include the name and campus for each person. Display all information for each person by caling the display) function o Compile and run your code. o Submit your source code as a plain text file with a .cpp extension. Make sure it compiles without error before submitting it. The core concept for this assignment is to use Encapsulation in a C++ class.