In the Kotlin file, write a program to perform a GET request on the route https://coderbyte.com/api/challenges/logs/user-info-csv and then sort the CSV data by the second column.
Finally, print it as comma-separated values.
Example Input:
name,email,phone
Jane Smith,janesmith@example.com,555-5678
John Doe,johndoe@example.com,555-1234
Example Output:
Jane Smith, janesmith@example.com, 555-5678, John Doe, johndoe@example.com, 555-1234