Error CS1526 where do the [ ] go?

Hi, so I got this one error in the code that I am using, stating that a "new expression needs requires ‘( )’ or ‘’ after type, and I have gone over the line of code the error sent me to and cannot find where I am required to put those brackets, I have also tried placing those brackets around some of the components in that code line, to test out if they were the “new expression” but to no success, that error still comes up. Can someone please help me?

Here’s the code that I am using (bold line is were error shows up in (211,124):

{
var size = new Vector2(_boxCollider.size.x * Mathf.Abs(_localScale.x), _boxCollider.size.y * Mathf.Abs(_localScale.y)) / 2;
var center = new Vector2(_BoxCollider2D.offset.x * _localScale.x, (_BoxCollider2D.offset.y * _localScale.y);
}
}

Missing a )

var center = new Vector2(_BoxCollider2D.offset.x * _localScale.x, (_BoxCollider2D.offset.y * _localScale.y));