How would I use parentheses and a space in a concatenation

What is the issue? Include screenshots / videos if possible!
I have a variable that goes like this

for i = 1,34 do
	doors[i] = workspace.DoorFolder:FindFirstChild('Door'..(i)) or warn('No Door',i,'in the Door folder!')
end

So the name of the Door for example would be “Door (1)” With the space.
But every time I try to make it work it just doesn’t and I need some help
What solutions have you tried so far? Did you look for solutions on the Developer Hub?

I have tried changing around the … and such things but nothing is working, I have checked the developer hub but i have not found anything that helps my problem.

Note: I do not want to change the name of the Doors to have no space or no parentheses as that’s what I want the name and need the name to be, And the variable count

Edit: Forgot that the doors[i] comes from a table above this section of code

Assuming the door’s name would be “Door (Number)”, the concatenation would look like this:

for i = 1,34 do
	doors[i] = workspace.DoorFolder:FindFirstChild("Door ("..i..")") or warn('No Door',i,'in the Door folder!')
end
1 Like

Alright cool ill test it out 30 charsssssssss

Ill get back to you in an hour or two I got to go out

Thank you so much it works!
‎‎‎‎‎‎‎‎‎‎‎