Number Constraint

Consider the following SystemVerilog snipped

constraint c1 { a inside {[10:20]}; }
constraint c2 { soft a == 5; }

What value will a take when randomize() is called?