I like learning how to code better, and I want to help others learn how to code better. Isn't that what this whole crazy thing is about, anyway?
me = [find_answer(question) for question in questions if i_understand(question)]
or
var me = questions.filter(function(question) {
return iUnderstand(question);
}).map(function(question) {
return findAnswer(question);
});