I am getting an error that doesn't make sense!

using UnityEngine;
using System.Collections;

public class EnemyAI_Test : MonoBehaviour
{
    public float fpsTargetDistance;
    public float enemyLookDistance;
    public float attackDistance;
    public float enemyMovementSpeed;
    public float damping;
    public Transform fpsTarget;
    Rigidbody theRigidbody;
    Renderer myRender;



    void Start ()
    {
        myRender = GetComponent<Renderer>();
        theRigidbody = GetComponent<Rigidbody>();

    }

    void FixedUpdate ()
    {
        fpsTargetDistance = Vector3.Distance(fpsTarget.position, transform.position);
        if (fpsTargetDistance < enemyLookDistance)
        {
            myRender.material.color = Color.yellow;
            lookAtPlayer();
            print("Look at Playa Please");
        }
        if (fpsTargetDistance < attackDistance)
        {
            myRender.material.color = Color.red;
            attackPlease();
            print("ATTACK")
        }
        else
        {
            myRender.material.color = Color.blue;
        }
    }


    void lookAtPlayer()
    {
        Quaternion rotation = Quaternion.LookRotation(fpsTarget.position - transform.position);
        transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * damping);
    }


    void attackPlease()
    {
        theRigidbody.AddForce(transform.forward * enemyMovementSpeed);
    }


}

The error says:Assets/Editor/EnemyAI Test.cs(38,9): error CS1525: Unexpected symbol `}’

How do i fix this?

You’re lacking a semi column here:

print("ATTACK")