Error CS1001 i´m new pls help me. its simple

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

public class Shooting : MonoBehaviour {

public GameObject theBullet;
public Transform barrelEnd;

public int bulletSpeed;

private void Update ()
{
if(Input.GetKey (KeyCode.Mouse0))
{
Shoot();
}
}

void Shoot ()
{
var bullet = Instantiate (theBullet, barrelEnd.position, barrelEnd.rotation);
bullet.GetComponent().velocity = bullet.;transform.foward * bulletSpeed;
}
}

I suggest you use code tags and also list what the error is and not just the error code.

That being said, you have a semi-colon where it doesn’t belong. Right before transform.forward (also a spelling error)

bullet.GetComponent<Rigidbody>().velocity = bullet.;transform.foward * bulletSpeed;

Thanks