In order to construct a method that takes a number and returns a duplicate of that number rounded to the nearest integer, What code would you put in the following blanks, in order of appearance:
_____ DuplicateNumber(float _____)?
number *= 2;
int newNumber = Mathf.RoundToInt(number);
_____ newNumber;