以下のERBコードの実行結果として正しいものはどれですか? ```erb <% if items.present? %> <p>アイテムがあります</p> <% else %> <p>アイテムはありません</p> <% end %> ```