Need to have Arduino Uno talk with Analog ADXRS453 digital gyro

Dear helpful friends,

I reconfigured my code as you briliant me

#include <SPI.h>
const int CSpin = 40;
void setup()
{
  Serial.begin(9600);
  pinMode(CSpin, OUTPUT);  // set CS pin as OUTPUT
  digitalWrite(CSpin, HIGH);  // sets cs to high
  SPI.setClockDivider(SPI_CLOCK_DIV16);  // sets SPI clock to 5MHz
  SPI.begin();  // start SPI
  GyroSetup();
}

void loop(){
  delay(200);
  Gyro_regular();
}

void GyroSetup(){
  delay(200);
  digitalWrite(CSpin, LOW);  // sets chip select to transfer data
  delay(100);
  long result = SPI.transfer(0x20);  // sends a byte of data
  result = result << 8;
  result += SPI.transfer(0x00);
  result = result << 8;
  result += SPI.transfer(0x00);
  result = result << 8;
  result += SPI.transfer(0x03);
  Serial.println(result, BIN);  // output value
  digitalWrite(CSpin, HIGH);  // de-selects chip select
}

void Gyro_regular(){
  digitalWrite(CSpin, LOW);
  long result = SPI.transfer(0x20);  //sends a byte of data
  result = result << 8;
  result += SPI.transfer(0x00);
  result = result << 8;
  result += SPI.transfer(0x00);
  result = result << 8;
  result += SPI.transfer(0x00);
  Serial.println(result, BIN);  //output value
  digitalWrite(CSpin, HIGH);  //de-selects chip select
}

And the results are:

100000000000000000000000000
10100000000101101000000000001
10111111011111011010000000000
111111111000101010000000001
10111111110000000110000000000
111111011011100000000000000
111111101100010000000000001
10111111111011000000000000001
100000001101001010000000001
10100000111000000100000000001
10100000010111110110000000001
10100000000100000100000000001
100000000000100000000000001
100000000000011110000000000
10100000000100011010000000001
10100000000011001100000000001
10111101101100010110000000001
111111001001011110000000001
111111000101011110000000001
10111111101110010110000000001
111111100000011110000000000
111111011011111110000000000
100000001010000010000000001
10100000011101010010000000001
10100010111011101100000000000
100011001010010000000000001
10100001111010110010000000001
10100000110010000100000000001
10100000110100010000000000001
100000101000001100000000000
100000011111011100000000000
10100000001001011110000000001
111111111111101100000000000
10111111011000100100000000000
111110101000110110000000000
111110101001000000000000001
10111011110010101010000000001
10111101100000001000000000001
111110011001011100000000000
10111110111110010000000000001
10111111110001001010000000001
10100000000101001000000000000
10100010001010101000000000000
100001101011010100000000001
111111111111001000000000000
10111111111101000110000000001
10111111111100110110000000000
100000000001001010000000001

Did I successed? or failed?