The code that follows saves the data that was in the $names array as
Answer:
$names = array('joelmurach', 'rayharris', 'mikemurach');
$names= implode("\n", $names);
file_put-contents('usernames.txt', $names);
a string with data items separated by new line characters