I'm trying to Copy 2 sheets, and move them to the end. I currently have this code (just recorded macro), and don't actually know the code to send to the end:

Sub NewSheet()
'
' NewSheet Macro

    Sheets(Array("Template.Posts", "Template.Report")).Select
    Sheets("Template.Report").Activate
    Sheets(Array("Template.Posts", "Template.Report")).Copy Before:=Sheets(5)
End Sub
Thanks!