error: Assets/PlayRunningAnimation.js(19,1)BCE0044: expecting }, found ".

This is the script that had the error

if ( Input.GetKeyDown("W")) 
{
	animation.Play("Default Take");
}

if ( Input.GetKeyDown("S")) 
{
	animation.Play("Default Take");
}

if ( Input.GetKeyDown("A")) 
{
	animation.Play("Default Take");
}

if ( Input.GetKeyDown("D")) 
{
	animation.Play("Default Take");

How can i fix this? ps. i am new to unity and i dont know what 19,1 means!

there’s a missing closing brace at the very end of the script. the numbers refer to line and column position where the error is.