Konstruktor Node

public Node(String data) {
  this.data = data;
  this.next = null;
}
Astra Lee