powershell zip multiple files

Shell
$compress = @{
  Path = "C:\Reference\Draftdoc.docx", "C:\Reference\Images\*.vsd"
  CompressionLevel = "Fastest"
  DestinationPath = "C:\Archives\Draft.Zip"
}
Compress-Archive @compressCompress-Archive -Path C:\Reference -DestinationPath C:\Archives\Draft.zip
Source

Also in Shell: