4 errors in one line, please help!

Im new to JS and im trying to finish off a tutorial script, but i dont know what ive done wrong!

function OnGUI()
{
GUI.Box(Rect(10, 10, 300, 25), “RedCap” + “” redCapturePerc.ToString(“0”) + “” + “BlueCap” + “” + blueCapturePerc.ToString(“0”));
}

Ive gotten 4 errors:
-(99,54): expecting ), found ‘redCapturePerc’
-(99, 68): Unexpected token: "
-(99, 69): ‘;’ expected. Insert a semicolon at the end
-(99, 136): Unexpected token: )

Please help in any way you can!

Well, the first thing that immediately comes to mind is that you have:

"RedCap" + "" redCapturePerc.ToString("0")

when it should be like this:

"RedCap" + "" + redCapturePerc.ToString("0")

Essentially, you’re just missing a + symbol. I think that’s all that’s wrong with it.