I have a problem with this table. I want to set the right column (whose is set by p{9cm}) to be left align, but if I replace it with l{9cm}, it will be error. How to solve it?
Here is my code:
\documentclass[a4paper,oneside,11pt]{book}
\usepackage[hmargin={4cm,3cm},vmargin={4cm,3cm}]{geometry}
\usepackage{tabularx}
\usepackage{lipsum}
\begin{document}
\chapter{Chapter's Name}
\begingroup
\setlength\extrarowheight{13pt}
\noindent\begin{tabular}{@{}lcp{9cm}}
Random Text&:&\uppercase{random text here. mmmmmmmmm nnnnnnnnnn bbbbbbbbb. vvvvvvvvvv ccccccccccccccccccccccc xx zzzzzzzzzzzzzzzzzzzzzzzzzzzz}\\
Random Text 2&:&\uppercase{random text here. mmmmmmmmm nnnnnnnnnn bbbbbbbbb. vvvvvvvvvv ccccccccccccccccccccccc xx zzzzzzzzzzzzzzzzzzzzzzzzzzzz}
\end{tabular}
\endgroup
\end{document}
The output is:
I want to change the setting of the right column from p{9cm} to l{9cm} (left align), but if I do it, it will be error. What should I do to handle the long space between word (red line)?

mcolumn.\begin{tabular}{@{}lc>{\raggedright\arraybackslash}p{9cm}}. – campa Mar 25 '21 at 14:36