bool reverse(bool boolean) { if (boolean == true){ return false; } else if (boolean == false){ return true; } }