Try this:
Sub GetFromCSVs()
Dim WB As Workbook
Dim R As Range
Dim bFirst As Boolean
Dim stFile As String
Dim stPath As String
stPath = "C:\Temp\CSVs" ' change the path to suit
stFile = Dir(stPath & "*.csv")
bFirst = True
Set R = Workbooks.Add(xlWorksheet).Sheets(1).Range("A1")
Do Until stFile = ""
Set WB = Workbooks.Open(stPath & stFile, ReadOnly:=True)
If bFirst Then
WB.Sheets(1).Range("A1").CurrentRegion.Copy Destination:=R
Set R = R.Offset(, 2)
bFirst = False
Else
WB.Sheets(1).Range("A1").CurrentRegion.Columns(2).Copy Destination:=R
Set R = R.Offset(, 1)
End If
WB.Close saveChanges:=False
stFile = Dir() ' next file
Loop
End Sub