It looks like your file uses a semicolon as the separator but the read.csv function assumes the separator is a comma. Use either
read.csv(file.choose(), sep = ";")
or
read.csv2(file.choose())
The header argument is TRUE by default in both cases, so there is no need to set it, though there is no harm in doing so.