Hello , can someone help me?(Please help im a noob)

So i have a error 1022 , IDK what to do:
Heres the code

float horizontalMove = 0f;
bool jump = false;
bool Attack = false;

void Update()
{
horizontalMove = Input.GetAxisRaw(“Horizontal”) * runSpeed;

animator.SetFloat(“Speed”, Mathf.Abs(horizontalMove));

if (Input.GetButtonDown(“Jump”))
{
jump = true;
animator.SetBool(“IsJumping”, true);
}

if (Input.GetKeyDown(KeyCode.Mouse0))
{
animator.SetBool(“Attack”, true);
Attack = false;
}
}
public void OnLanding ()
{
animator.SetBool(“IsJumping”, false);
}

private void FixedUpdate()
{
controller.Move(horizontalMove * Time.fixedDeltaTime, false, jump);
jump = false;

}
}

The error will tell you which line number and column it is on so please report the full error description including that and indicate which line of your code that is.

Also, when posting code, please use Code Tags and not plain text otherwise it’s very hard to understand.