How do I use MoveTowards in 2d?

I am trying to get this object to move toward the position slowly and stop moving when it is there.

here is the script

public Vector2 aPosition0 = new Vector2(0, 0);

public Vector2 aPosition1 = new Vector2(0, 0);
     
    void Update () 
        {
            Vector2.MoveTowards(aPosition0, aPosition1, 10 * Time.deltaTime);
        }

Ok I got it working here is it fixed

public Vector2 aPosition1 = new Vector2(3,3);

void Update () 
	{
			transform.position = Vector2.MoveTowards(new Vector2(transform.position.x, transform.position.y), aPosition1, 3 * Time.deltaTime);
	}