Example:
Arrays.asList(new String[]{"Hello", "world"})
The quick-fix replaces the array initializer with individual arguments:
Arrays.asList("Hello", "world")