12C High Temperature Sensor

Hello, I am pretty much a beginner when it comes to Arduino, so let me know if I posted in the wrong forum section. Anyways, I am trying to get temperature data from a grove-i2c-high-accuracy-temperature-humidity-sensor-sht35 and I am using an Arduino Uno. Unfortunately, I do not have the base hat which interfaces with the Arduino. Instead I have wires and a bread board to connect ground, 5v, SCL, and SDA respectively. Below I have posted the code I am using to try to collect data from the system, but it keeps returning -1. I am unsure what this means and have been having trouble finding where I went wrong. Any help would be appreciated. Thank you!

#include <Wire.h>

int TempAddress = 0x45;//Temperature Sensor Address
#define PowerRegister 0x2D
int X0;
void setup() {
Wire.begin();
Serial.begin(9600);
delay(100);
Wire.beginTransmission(TempAddress);
Wire.write(PowerRegister);
Wire.write(8 );
Wire.endTransmission();
}

void loop() {
Wire.beginTransmission(TempAddress);
Wire.write(TempAddress);
Wire.endTransmission();
Wire.requestFrom(TempAddress,2); // Request the transmitted two bytes from the two registers

if(Wire.available()<=2) { //
X0 = Wire.read(); // Reads the data from the register

}

Serial.print("X0= ");
Serial.print(X0);

}

have you tried the I2c Scanner to see if the sensor address is showing on the bus?

how long are you cables to the senors and have you pullup resistors on the SDA and SCL lines?

have you looked at Seeed SHT35 library

I have tried the 12c scanner and the check did not recognize the sensor. I have about 2 inch wires connect from the sensor to a breadboard and about 3 inch wires from the bread board to the uno board. I do not have pullup resistors because I believe the breakout board already has resistance. I have also looked at the Seeed SHT35 library and still cannot get any reading and I believe this is due to something wrong with my set up.

try swopping the SDA and SCL lines and rerunning the scanner
could you upload a photo and a circuit diagram (hand drawn would do) of the system?
if you have an oscilloscope have a look at the SDA and SCL signals