// visit variables // Analysis var visitString; var numVisits;These two variables are going to track the number of visits to the site a user has made. Cookies can only store information in string values, so the information must be stored as a string. However, we are going to want to increment that number, so we need a variable to hold the numeric representation of the string as well (numVisits).