My code for the roll a ball game says it has an error but it looks like I'm right

Here is my code

using System.Collections;
using System.Collections.Generic; <--- it says the error is here this is not part of the code
using UnityEngine;
using UnityEngine.InputSystem;

public class PlayerControler : MonoBehaviour
{
    private Rigidbody rb;
    private float movementX;
    private float movementY;
    
    // Start is called once before the first execution of Update after the MonoBehaviour is created
    void Start()
    {
        rb = GetComponent<Rigidbody>();
    }
    
    void OnMove(InputValue movementValue)
    {
        Vector2 movementVector = movementValue.Get<Vector2>();
        movementX = movementVector.x;
        movementY = movementVector.y;
    }

    void FixedUpdate()
    {
        Vector3 movement = new Vector3(movementX, 0.0f, movementY)
        
        rb.AddForce(movement);
    }
}

Can you post the error its telling you?

Read the error message correctly. It’s on line 27, not the line you think it’s on.

You’ve forgotten a semi-colon on line 27.

thanks for your help