Nrf24l01 arduino doesnt work

and this to receive

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

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

void setup() {
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");
}
}