Get Display Order Value for Express Entity Entry

I am working on a custom template for the Express data list block, and I need to get the Display Order value and display it. I thought something like this would work:
$lid = $item->getEntry()->getDisplayOrder();
But that doesn’t return anything.

try getEntryDisplayOrder() instead

Ah, that works! Thank you!