Define $ADSearchBase as an array of strings:
param(
[parameter(Mandatory=$false)]
[String[]] $ADSearchBase = "OU=Left,OU=Users,OU=GTIIT,DC=xxDC=com,DC=cn", "OU=Right,OU=Users,OU=GTIIT,DC=xxDC=com,DC=cn"
)
Keep in mind that you can use only one value at a time in the -SearchBase parameter on, say, a Get-ADUser cmdlet. You'll have to modify the code to loop over the array and run your code as many times as there are items in the array.