Given a set of positive integers, write a function to order the integers in such a way that the concatenation of the numbers forms the largest possible integer and return this integer.
</section>
## Instructions
<sectionid='instructions'>
</section>
## Tests
<sectionid='tests'>
``` yml
tests:
- text: <code>maxCombine</code> should be a function.
testString: assert(typeof maxCombine == 'function', '<code>maxCombine</code> should be a function.');
- text: <code>maxCombine([1, 3, 3, 4, 55])</code> should return a number.
testString: assert(typeof maxCombine([1, 3, 3, 4, 55]) == 'number', '<code>maxCombine([1, 3, 3, 4, 55])</code> should return a number.');
- text: <code>maxCombine([1, 3, 3, 4, 55])</code> should return <code>554331</code>.