error CS1729: The type `UnityEngine.Rect' does not contain a constructor that takes `5' arguments

Please help me. It says that the problem is on line 39.

Line 39:
GUI.Label (new Rect(Screen.width / 2 - 150, 200, 2000, 1000, “PLAYER ONE WINS”));

Please help. Thank You.

Closing bracket of rect in the wrong place. Correct code as follows

GUI.Label (new Rect(Screen.width / 2 - 150, 200, 2000, 1000), "PLAYER ONE WINS");