Make new array of values where multiples of 10 go first

Implement function multiplesOf10First of one argument arr which contains numbers. Function should return new array with multiples of 10 going first.

multiplesOf10First([3, 10, 90, 4, -5, -20])