Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
ISAIAH S
1,409 PointsMy code is working, but not doing what I want it to.
I am making a Workspace for storing Emoji. I started on Symbols.java
.
https://w.trhou.se/whbwd3hw97
1 Answer

Craig Dennis
Treehouse TeacherAwesome use of the new Workspace Forking feature!
I think you want this:
System.out.println("The symbols are:");
for (String symbol : symbols) {
System.out.println(symbol);
}
ISAIAH S
1,409 PointsISAIAH S
1,409 PointsThanks!
P.S. How do I sort them?