Connect to GitHub to push and pull your project files to a repository.
On the page that opens, create a token with repo scope, copy it, then paste it below.
Paste the personal access token you created on GitHub with repo scope.
Click Refresh to load commit history
Exercise Info
Goals
To declare a public static method to some specification
To do proper array indexing
To use loops in concert with arrays
To use logic inside of a loop
To use the System.out.print method properly
Instructions
Declare a void method printArray in the ArrayPrinter class. This method should take an array of ints, and it should then print out the elements of the array separated by commas (this is useful, since printing out an array by default in Java just gives its memory address). For example, the array {0,5,2,4} should be printed out as 0, 5, 2, 4. Note how there is no comma or space at the end of the output string.