Help With Next Level Script

Hi Guys,
guys i have a script for next level i am trying to make this script work but it wont work.

using UnityEngine;
using System.Collections;

public class NextLevel : MonoBehaviour {
	// Use this for initialization
	void Start () 
	{
		
	}
	
	// Update is called once per frame
	void Update () 
	{
		
	}

	void OnTriggerEnter2D(Collider2D collision)
	{
		if (collision.gameObject.tag == "Finish") 
		{
			Application.LoadLevel(Level); 
		}
	}
}

Thank You

What is Level? Is the name of the level?
Okay if is it, try this.

Application.LoadLevel("Level");

The name of the level should be in “”

no i want Level to be like a string so i can drop scenes into it in the inspector