LevelManager.cs(17,9): error CS1525: Unexpected symbol `}' i cant find the bug here will be glad if someone can help me

using UnityEngine;
using System.Collections;

public class LevelManager : MonoBehaviour
{
public void LoadLevel(string name){
Debug.Log(“Level load”);
Application.LoadLevel(name);
}

public void QuitRequest(){
	Application.Quit();
}

public void LoadNextLevel(){
	Application.LoadLevel(Application.loadedLevel + 1)
}

public void BrickDestroyed(){
if (Brick.breakableCount <= 0)
	LoadNextLevel();
}	

}

You’re missing a semicolon in LoadNexLevel.