Can someone help me with this error CS1003 please?,Can someone please help my with this error. Im new and wanted to make this game from a tutorial.

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

public class SpawnManager : MonoBehaviour
{
public GameObject Enemy;

// Start is called before the first frame update
void Start()
{
    InvokeRepeating("spawn", 0, 1);
}

// Update is called once per frame
void Update()
{
    
}
void spawn()
{
    Instantiate(Enemy, transform.position + new Vector3(Random.Range(9,-9)0,0), Quaternion.identity);
}

},
This is the skript
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SpawnManager : MonoBehaviour
{
public GameObject Enemy;

// Start is called before the first frame update
void Start()
{
    InvokeRepeating("spawn", 0, 1);
}

// Update is called once per frame
void Update()
{
    
}
void spawn()
{
    Instantiate(Enemy, transform.position + new Vector3(Random.Range(9,-9)0,0), Quaternion.identity);
}

}

Hi,

Error CS1003 is a syntax error which means you have a typo or missing character somewhere. Probably in the console you can see the line and a missing character. In the future learning to read errors will be invaluable (they are there for a reason, to help developers).

In your case, you forgot comma here new Vector3(Random.Range(9,-9)0,0), should be new Vector3(Random.Range(9,-9),0,0).

Thanks you.