private void send(List<QuestionSubmit> list) {

    // TODO: dit door een task laten uitvoeren

    try {
      Client client = Client.getInstance();

      for (QuestionSubmit s : list) {
        client.send(answerForQuestion.get(s));
        answerForQuestion.remove(s);
      }
    } catch (UnknownHostException e) {
      messageMaker.showError("kon antwoorden niet doorsturen");
    } catch (IOException e) {
      messageMaker.showError("kon antwoorden niet doorsturen");
    }
  }