Challenge 39 – Format my Phone Number Challenge #39 involved creating a function to format a telephone number.[1] Specifically, write a function that accepts an array of 10 integers (between 0 and 9), that returns a string of those numbers in the form of a phone number. For instance in C#, public string FormatPhoneNumber(int[] numbers)Read more