What words are displayed in the list box by the following program segment? Dim dimensions() As String = {"width", "height", "depth"} Dim query = From dimension in dimensions Order By dimension.Length Descending, dimension Ascending Select dimension lstBox.DataSource = query.ToList lstBox.SelectedIndex = Nothing