Reading / Printing Dallas OneWire Temperature Sensors (Solved)

Thanks for the suggestion PaulS. I modified the sketch by replacing the equality operator (==) with the assignment operator (=). This makes sense to me now and I was hopeful it would resolve the issue, but I get the following errors:

Auto_SensorAddress__ReadTemp3.ino: In function 'void setup()':
Auto_SensorAddress__ReadTemp3:77: error: invalid array assignment
Auto_SensorAddress__ReadTemp3:80: error: invalid array assignment
Auto_SensorAddress__ReadTemp3:83: error: invalid array assignment

Any suggestions would be appreciated

Here is the section of code I modified

if(i==0){
                  Sensor1 = tempDeviceAddress;
                }
                if(i==1){
                  Sensor2 = tempDeviceAddress;
                }
                if(i==2){
                  Sensor3 = tempDeviceAddress;
                }