Using random.Range between 2 floats but get no comma's

If i use Random.Range(float1, float2) i get a lot of numbers behind the comma’s is there a way to get for example 17 instead of 17,4485934 and 108 instead of 108,4198121

Use integers ex Random.Range(int1,int2); or Mathf.Round(float);