addChallenge(newChallenge) {
    const hasAlreadyChallenge = _(this.challenges).filter(challenge => challenge.id === newChallenge.id).size();

    if(!hasAlreadyChallenge) {
      this.challenges.push(newChallenge);