Need help ERROR CS 1002

This is the script i am using and i cant find what i did wrong.
plz help
(line 6)

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

public class World : MonoBehaviour {
UnityEngine.AI NavMeshAgent playerAgent;

void Start ()
{
playeragent = GetComponent ();
}

void Update ()
{
if (Input.GetMouseButtonDown (0) && !UnityEngine.EventSystems.EventSystem.Current.IsPointingOverGameObject ())
GetInteraction();
}

void GetInteraction()
{
Ray interactionRay = Camera.main.ScreenPointToRay (Input.mousePosition);
RaycastHit interactionInfo;
if (Physics.Raycast (interactionRay, out interactionInfo, Mathf.Infinity)) {
{
GameObject interactionObject = interactionInfo.collider.gameObject;
if (interactedObject.tag == “Interacted Object”) {
Debug.log (“Interactable Interacted.”);
} else {
playerAgent.destination = interactionInfo.point;
}
}
}
}
}

Ty

Use code tags.