public void SaveRandomValueToTheRAM(int min, int max) { int randomNumber = Random.Next(0, 1000); this.ram.SaveValue(randomNumber); } }