Q. Code as fast as you can! You need to double the integer and return it.
function doubleInteger(i) { // i will be an integer. Double it and return it. return parseInt(i*2); }