Nrf24l01 arduino doesnt work

here is the receive sketch

#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>

RF24 radio(53,8); //CE, CSN
const byte adress[6] = "00001";

void setup() {
pinMode(53, OUTPUT);
Serial.begin(9600);
radio.begin();
radio.openReadingPipe(0,adress);
radio.setPALevel(RF24_PA_MIN);
radio.startListening();

}

void loop() {

char text[32] = {0};

if(radio.available())
{

radio.read(&text,sizeof(text));
Serial.print(" ");
Serial.println(text);    

}
else
{
Serial.print("Fehler");
}
}

and here the transmit

#include <nRF24L01.h>
#include <RF24.h>
#include <SPI.h>

RF24 radio(53,8); // CNS, CE
const byte adress[6] = "00001";

void setup() {
pinMode(53, OUTPUT);
Serial.begin(9600);
radio.begin();
radio.openWritingPipe(adress);
radio.setPALevel(RF24_PA_MIN);
radio.stopListening();

}

void loop() {

if(radio.available()){

const char text[] = "Es hat geklappt";
radio.startWrite(&text,sizeof(text),false);
radio.write(&text,sizeof(text));

}

}