Hi and tanks for the work ```ruby if project.blocked? problems.each do |i| eat(:donuts) solve(i) end else sleep end puts 'ok' ``` the result is  the same without the if ```ruby problems.each{|i| eat(:donuts) solve(i) } puts 'ok' ```  with some hint i can try to make a PR