Random number on game start for a variable

Ok so I have the variable

public int m_ground = 0;

and I need that 0 to be a random whole number from 0-20. Ideas?

you would do:

m_ground = Random.Range(0, 20);