so I've got a quiz like carousel here. But it isn't quite working yet. The user has the possibility to either answer yes or no on four questions. Then I'm pushing the answer to an empty array and I've got an array with the correct answers like this:
var antwoorden = ['ja', 'nee', 'nee', 'ja'];
var gebruikerant = [];
So the user his answer gets pushed into the array "gebruikerant" by giving the buttons 'click' eventlistener.
And after the answers have been given I'd like to console log the result.
Any help will be highly appreciated!