Partial bits update for a register field

Hi

I have to predict partial bits of a field of a uvm register. Is it possible to do it ?

For example.

I have a register wakeup_register. It has a field by name wakeup[10:0].
I want to predict [5:4] bits of wakeup using uvm “predict”. How do I do it ?

does this work
void’(reg_map.wakeup_register.wakeup[5:4].predict(2’b00));

I know I can predict complete field but I am not sure of partial bits update.

Is there other way?

Avinash