[Tex/LaTex] Curly brackets spanning multiple lines (no math env)

brackets

For language learning purposes I would like to use curly brackets with an selection of objects (multiple lines of text, no math environment like this).

Result needed

But the code

\documentclass[12pt]{extarticle}
\usepackage[a4paper,verbose]{geometry}
\usepackage{fontspec}
\usepackage{empheq}

\setmainfont[Ligatures=TeX]{Gentium Plus}


\begin{document}

I want to buy
\begin{empheq}[left=\empheqlbrace,right=\empheqrbrace]{align*}
    tomatoes \\
    onions \\
    cucumbers
\end{empheq}
in the market.

\end{document}

produces

Wrong result

In addition the words within the brackets should be left aligned.

Best Answer

enter image description here

\documentclass[12pt]{extarticle}
\usepackage[a4paper,verbose]{geometry}

\begin{document}

I want to buy
$\left\{
\begin{tabular}{@{}l@{}}
    tomatoes \\
    onions \\
    cucumbers
\end{tabular}
\right\}$
in the market.

\end{document}
Related Question