Error CS0029: Cannot implicity convert type 'int' to 'string'

using UnityEngine;
using System.Collections;

public class MenuManager : MonoBehaviour 
{
public string CurrentMenu;
	
	public string MatchName = "";
	public string MatchPassword = "";
	public string MatchMaxPlayers = 32;

The Error is on 10,42 … Used this off a tutorial (video here) and can’t figure out what to do… please help out I’m still a novice coder and I’m in love with Unity… really want to move on, BTW this is for a menu for a FPS

public string MatchMaxPlayers = 32;

should be

public int MatchMaxPlayers = 32;

like it shows in the video