I meant to find the tuples with a difference, but wrote it backwards again! ```js $$('head meta') .map(m => [m.content === m.getAttribute('content'), m.content, m.getAttribute('content')]) .filter(t => t[0]) // should be `!t[0]` ```