Methode initialisieren

hallo bin eine java anfängerin und habe viele dumme frage
Die Aufgabe :

Initialisiert innerhalb der Methode applyReverse() eine Liste vom Typ SimpleList mit denWrapper.java:15: cannot find symbol
symbol : constructor SimpleList(int,int,int,int,int,int)
location: class coma.examples.SimpleList
SimpleList p = new SimpleList(3,5,-7,9000,-57,5);
^
Wrapper.java:16: incompatible types
found : void
required: coma.examples.SimpleList
SimpleList l = p.reverse();

Elementen 3, 5, -7, 9000, -57, 5 und wendet
anschließend die Methode reverse() auf die Liste an.

Ihr dürft davon ausgehen, dass die Klasse
SimpleList bereits die Methode
reverse() besitzt.
Ihr befindet euch außerhalb der Klasse
SimpleList. Wir können also nur
mithilfe ihrer Instanzmethoden auf die Elemente zugreifen.

was ich geschrieben habe :

public SimpleList applyReverse ()
{

SimpleList p =
new SimpleList(3,5,-7,9000,-57,5);
SimpleList l = p.reverse();
return (l );

} habe 2 fehler

Wrapper.java:15: cannot find symbol
symbol : constructor SimpleList(int,int,int,int,int,int)
location: class coma.examples.SimpleList
SimpleList p = new SimpleList(3,5,-7,9000,-57,5);
^
Wrapper.java:16: incompatible types
found : void
required: coma.examples.SimpleList
SimpleList l = p.reverse();

ich weiß nicht mehr weiter
kann mir jemand bitte helfen ? bitte bitte

Auch hallo

Für ein wenig Hilfe wäre ein wenig Struktur im Posting nicht schlecht:
-was ist der Code (mit und formatieren
-was ist die Aufgabenstellung
-was ist die Fehlermeldung
Und das Openbook wurde konsultiert ? Java Insel - Kapitel 5

mfg M.L.