Error CS1525 in Unity 5.5.1 (Urgent)

Can you please help me solve this?

thanks

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class Ship_2 : MonoBehaviour {

// Use this for initialization
void OnTriggerEnter(Collider collider) {

	if (collider.tag == "player") {
		FindObjectOfType<Cube(1)>().StartRespawnCoroutine(collider,gameObject);
	}

}

}

Simple syntax error as class names cannot have braces “(” or “)” in them. Did you mean Cube_1 instead of Cube(1)?:

FindObjectOfType<Cube(1)>