A non-clustered index contains:
- index key columns
- included columns (if specified)
- clustered index key columns (as the row locator)
Your query apparently doesn't need any other columns, so the non-clustered index will cover the needs of the query and avoid the need for a key lookup to retrieve additional data.
See Nonclustered index architecture for details.